Skip to content

Commit

Permalink
Release 1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcornaz committed Mar 7, 2023
1 parent 37eb293 commit 6f15823
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project *loosely* follows [Semantic Versioning v2](https://semver.org/s

## [Unreleased]

## [1.15.0] - 2023-03-07

### Added

* `AccountType` alias for `account::Type`
Expand Down Expand Up @@ -303,7 +305,8 @@ and this project *loosely* follows [Semantic Versioning v2](https://semver.org/s
- Parse directives
- `Parser` iterator type

[unreleased]: https://github.com/jcornaz/beancount-parser/compare/v1.14.0...HEAD
[unreleased]: https://github.com/jcornaz/beancount-parser/compare/v1.15.0...HEAD
[1.15.0]: https://github.com/jcornaz/beancount-parser/compare/v1.14.0...v1.15.0
[1.14.0]: https://github.com/jcornaz/beancount-parser/compare/v1.13.0...v1.14.0
[1.13.0]: https://github.com/jcornaz/beancount-parser/compare/v1.12.0...v1.13.0
[1.12.0]: https://github.com/jcornaz/beancount-parser/compare/v1.11.1...v1.12.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "beancount-parser"
version = "1.14.0" # bump
version = "1.15.0" # bump
license = "Unlicense"
authors = ["Jonathan Cornaz"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub mod transaction;

/// Type of account
#[deprecated(
since = "next-version",
since = "1.15.0",
note = "Use `AccountType` or `account::Type` instead"
)]
pub type Type = account::Type;
Expand Down

0 comments on commit 6f15823

Please sign in to comment.