Skip to content

Commit

Permalink
Release v0.11.0 (#153)
Browse files Browse the repository at this point in the history
release v0.11.0
  • Loading branch information
oberblastmeister authored Nov 11, 2022
1 parent b5439fb commit 01e6582
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [v0.11.0] - 2022-11-11

* removes the `types` module and replaces it with `ast`

* the `ast` modules has better types and sum types
Expand Down Expand Up @@ -118,7 +120,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

* Fixed a memory leak while parsing `inherit`-expressions with invalid syntax (from [@Ma27](https://github.com/Ma27/)).

[Unreleased]: https://github.com/nix-community/rnix-parser/compare/v0.10.2...master
[Unreleased]: https://github.com/nix-community/rnix-parser/compare/v0.11.0...master
[v0.11.0]: https://github.com/nix-community/rnix-parser/compare/v0.10.2...v0.11.0
[v0.10.2]: https://github.com/nix-community/rnix-parser/compare/v0.10.1...v0.10.2
[v0.10.1]: https://github.com/nix-community/rnix-parser/compare/v0.10.0...v0.10.1
[v0.10.0]: https://github.com/nix-community/rnix-parser/compare/v0.9.1...v0.10.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
Expand Up @@ -6,7 +6,7 @@ license = "MIT"
name = "rnix"
readme = "README.md"
repository = "https://github.com/nix-community/rnix-parser"
version = "0.11.0-dev"
version = "0.11.0"

[[bench]]
harness = false
Expand Down
1 change: 1 addition & 0 deletions src/token_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use crate::SyntaxKind;
pub struct TokenSet(u128);

impl TokenSet {
#[allow(dead_code)]
pub(crate) const EMPTY: TokenSet = TokenSet(0);

pub(crate) const fn new(kind: SyntaxKind) -> TokenSet {
Expand Down

0 comments on commit 01e6582

Please sign in to comment.