Skip to content

Commit

Permalink
Bump to 1.8.0 and add changelog entry (#157)
Browse files Browse the repository at this point in the history
* Bump to 1.8.0 and add changelog entry
  • Loading branch information
anish-1p committed Feb 28, 2024
1 parent ce17070 commit 631bf70
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 10 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Version 1.8.0

This release brings support for various Rust std smart pointers, as well as a CLI flag to opt-into following symbolic links. In addition, typeshare has been updated to use syn 2.0

- Added support for various Rust std smart pointers. [#134](https://github.com/1Password/typeshare/pull/134)
- Added CLI flag to opt-into following symbolic links. [#156](https://github.com/1Password/typeshare/pull/156)
- Migrate to syn version 2.0. [#130](https://github.com/1Password/typeshare/pull/130)

### Community contributors

Thank you to the following community contributors for your work on this release:

- [czocher](https://github.com/czocher)
- [ipetkov](https://github.com/ipetkov)

# Version 1.7.0

This release brings support for more rust primitive types (slices and chars), as well as support for manually overriding the output type in the `#[typeshare]` annotations
Expand Down
8 changes: 4 additions & 4 deletions 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 annotation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typeshare-annotation"
version = "1.0.2"
version = "1.0.3"
rust-version = "1.57"
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typeshare-cli"
version = "1.7.0"
version = "1.8.0"
rust-version = "1.57"
edition = "2021"
description = "Command Line Tool for generating language files with typeshare"
Expand All @@ -23,4 +23,4 @@ once_cell = "1"
rayon = "1.5"
serde = { version = "1.0.164", features = ["derive"] }
toml = "0.5"
typeshare-core = { path = "../core", version = "1.7.0" }
typeshare-core = { path = "../core", version = "1.8.0" }
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typeshare-core"
version = "1.7.0"
version = "1.8.0"
rust-version = "1.57"
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typeshare"
version = "1.0.1"
version = "1.0.2"
rust-version = "1.57"
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -12,4 +12,4 @@ repository = "https://github.com/1Password/typeshare"
chrono = { version = "0.4", default-features = false, features = ["clock", "std", "wasmbind"] }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1"
typeshare-annotation = { path = "../annotation", version = "1.0.0" }
typeshare-annotation = { path = "../annotation", version = "1.0.3" }

0 comments on commit 631bf70

Please sign in to comment.