Skip to content

Commit 060ffc7

Browse files
Release version 1.1.0 (#288)
1 parent d96b907 commit 060ffc7

File tree

6 files changed

+62
-54
lines changed

6 files changed

+62
-54
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
### Fixed
13+
14+
### Removed
15+
16+
## [1.1.0] - 2025-03-02
17+
18+
### Added
19+
1220
- Bump the Minimum Support Rust Version (MSRV) to 1.75.0
1321
- The `Primitive` and `VectorWrite` traits are now marked as unsafe to remind implementers of alignment constraints
1422
- \[Rust\]: Add support for union vectors [#287](https://github.com/planus-org/planus/pull/287)
@@ -111,7 +119,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111119

112120
- Initial release
113121

114-
[Unreleased]: https://github.com/planus-org/planus/compare/v1.0.0...HEAD
122+
[Unreleased]: https://github.com/planus-org/planus/compare/v1.1.0...HEAD
123+
[1.1.0]: https://github.com/planus-org/planus/compare/v1.0.0...v1.1.0
115124
[1.0.0]: https://github.com/planus-org/planus/compare/v0.4.0...v1.0.0
116125
[0.4.0]: https://github.com/planus-org/planus/compare/v0.3.1...v0.4.0
117126
[0.3.1]: https://github.com/planus-org/planus/compare/v0.3.0...v0.3.1

Cargo.lock

+40-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
license = "MIT/Apache-2.0"
88
repository = "https://github.com/planus-org/planus"
99
rust-version = "1.75"
10-
version = "1.0.0"
10+
version = "1.1.0"
1111

1212
[workspace.dependencies]
1313
askama = "0.12"
@@ -41,13 +41,13 @@ vec_map = "0.8.2"
4141

4242
# Our crates
4343
array-init-cursor = { version = "0.2.0", path = "crates/array-init-cursor" }
44-
planus = { version = "1.0.0", path = "crates/planus", default-features = false }
45-
planus-buffer-inspection = { version = "1.0.0", path = "crates/planus-buffer-inspection" }
46-
planus-codegen = { version = "1.0.0", path = "crates/planus-codegen" }
47-
planus-inspector = { version = "1.0.0", path = "crates/planus-inspector" }
48-
planus-lexer = { version = "1.0.0", path = "crates/planus-lexer" }
49-
planus-translation = { version = "1.0.0", path = "crates/planus-translation" }
50-
planus-types = { version = "1.0.0", path = "crates/planus-types" }
44+
planus = { version = "1.1.0", path = "crates/planus", default-features = false }
45+
planus-buffer-inspection = { version = "1.1.0", path = "crates/planus-buffer-inspection" }
46+
planus-codegen = { version = "1.1.0", path = "crates/planus-codegen" }
47+
planus-inspector = { version = "1.1.0", path = "crates/planus-inspector" }
48+
planus-lexer = { version = "1.1.0", path = "crates/planus-lexer" }
49+
planus-translation = { version = "1.1.0", path = "crates/planus-translation" }
50+
planus-types = { version = "1.1.0", path = "crates/planus-types" }
5151

5252
# used for doctests
5353
planus-example = { path = "examples/rust" }

crates/planus-codegen/src/templates/rust/namespace.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pub use root::*;
44

5-
const _: () = ::planus::check_version_compatibility("planus-1.0.0");
5+
const _: () = ::planus::check_version_compatibility("planus-1.1.0");
66

77
{% for docstring in docstrings.iter_strings() %}
88
/// {{ docstring }}

crates/planus/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ pub use crate::{
4040
#[doc(hidden)]
4141
pub const fn check_version_compatibility(s: &str) {
4242
match s.as_bytes() {
43-
b"planus-1.0.0" => (),
43+
b"planus-1.1.0" => (),
4444
_ => panic!(
45-
"Your generated code is out of date, please regenerate using planus version 1.0.0"
45+
"Your generated code is out of date, please regenerate using planus version 1.1.0"
4646
),
4747
}
4848
}

examples/rust/src/monster_generated.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pub use root::*;
22

3-
const _: () = ::planus::check_version_compatibility("planus-1.0.0");
3+
const _: () = ::planus::check_version_compatibility("planus-1.1.0");
44

55
/// The root namespace
66
///

0 commit comments

Comments
 (0)