Skip to content

Commit c1f56f7

Browse files
chore: release v2.0.0
1 parent 05d3b79 commit c1f56f7

File tree

7 files changed

+129
-9
lines changed

7 files changed

+129
-9
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["shapely", "shapely-core", "shapely-derive", "shapely-json", "shapely
33
resolver = "3"
44

55
[workspace.package]
6-
version = "1.0.0"
6+
version = "2.0.0"
77
authors = ["Amos Wenger <[email protected]>"]
88
edition = "2024"
99
rust-version = "1.85"
@@ -22,7 +22,7 @@ keywords = [
2222
categories = ["encoding", "parsing", "development-tools", "data-structures"]
2323

2424
[workspace.dependencies]
25-
shapely = { version = "1.0.0", path = "shapely" }
26-
shapely-core = { version = "1.0.0", path = "shapely-core" }
27-
shapely-derive = { version = "1.0.0", path = "shapely-derive" }
25+
shapely = { version = "2.0.0", path = "shapely" }
26+
shapely-core = { version = "2.0.0", path = "shapely-core" }
27+
shapely-derive = { version = "2.0.0", path = "shapely-derive" }
2828
unsynn = "0.0.25"

shapely-core/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [2.0.0](https://github.com/bearcove/shapely/compare/shapely-core-v1.0.0...shapely-core-v2.0.0) - 2025-03-11
11+
12+
### Other
13+
14+
- Stub out shapely-yaml
15+
- Simplify Shape name function signature
16+
- Clean up HashMap's name impl
17+
- Change Shape.name from static str to NameFn
18+
- Note on valid zst pointer values, closes #11
19+
- Back to something working
20+
- Clippy auto fix
21+
- Add `addr` and `shape` methods to Partial and Slot
22+
- Looking good!
23+
- Refactor slot_by_name and move_into
24+
- Refactor Partial struct initialization and field access
25+
- more slot/field cleanups
26+
- Clean up Partial API
27+
- clean up drop impls
28+
- more work on the field API
29+
- Shape up field API
30+
- Stability notes
31+
- introduce slot_by_index / slot_by_name
32+
- link to 'free of syn' campaign
33+
- wip sloterrors
34+
- Ensure no syn dependency (and badge about it), closes #9

shapely-derive/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [2.0.0](https://github.com/bearcove/shapely/compare/shapely-derive-v1.0.0...shapely-derive-v2.0.0) - 2025-03-11
11+
12+
### Other
13+
14+
- Stub out shapely-yaml
15+
- Simplify Shape name function signature
16+
- Change Shape.name from static str to NameFn
17+
- Stability notes
18+
- link to 'free of syn' campaign
19+
- Ensure no syn dependency (and badge about it), closes #9
20+
- Introduce core crate
21+
- Get rid of debug/display, closes #4

shapely-json/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [2.0.0](https://github.com/bearcove/shapely/compare/shapely-json-v1.0.0...shapely-json-v2.0.0) - 2025-03-11
11+
12+
### Other
13+
14+
- Simplify Shape name function signature
15+
- Change Shape.name from static str to NameFn
16+
- Back to something working
17+
- Tests pass again
18+
- Add `addr` and `shape` methods to Partial and Slot
19+
- Looking good!
20+
- Clean up Partial API
21+
- Shape up field API
22+
- Stability notes
23+
- introduce slot_by_index / slot_by_name
24+
- link to 'free of syn' campaign
25+
- Ensure no syn dependency (and badge about it), closes #9
26+
- Introduce core crate
27+
- Get rid of debug/display, closes #4

shapely-yaml/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [2.0.0](https://github.com/bearcove/shapely/compare/shapely-yaml-v1.0.0...shapely-yaml-v2.0.0) - 2025-03-11
11+
12+
### Other
13+
14+
- Stub out shapely-yaml

shapely/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [2.0.0](https://github.com/bearcove/shapely/compare/shapely-v1.0.0...shapely-v2.0.0) - 2025-03-11
11+
12+
### Other
13+
14+
- Change Shape.name from static str to NameFn
15+
- Looking good!
16+
- clean up drop impls
17+
- Stability notes
18+
- link to 'free of syn' campaign
19+
- Make derive unconditional, closes #8
20+
- Get rid of insta, closes #10
21+
- Ensure no syn dependency (and badge about it), closes #9
22+
- Introduce core crate
23+
- Get rid of debug/display, closes #4
24+
- Start implementing transparent

0 commit comments

Comments
 (0)