Skip to content

Commit

Permalink
added a changelog (#498)
Browse files Browse the repository at this point in the history
* added a changelog

* Also bump version
  • Loading branch information
alex authored Nov 17, 2024
1 parent 755d5df commit 8573264
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asn1"
version = "0.18.0"
version = "0.19.0"
authors = ["Alex Gaynor <alex.gaynor@gmail.com>"]
repository = "https://github.com/alex/rust-asn1"
keywords = ["asn1"]
Expand All @@ -15,7 +15,7 @@ default = ["std"]
std = []

[dependencies]
asn1_derive = { path = "asn1_derive/", version = "0.18.0" }
asn1_derive = { path = "asn1_derive/", version = "0.19.0" }
itoa = "1.0.11"

[dev-dependencies]
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ Add `asn1` to the `[dependencies]` section of your `Cargo.toml`:

```toml
[dependencies]
asn1 = "0.18"
asn1 = "0.19"
```

Builds on Rust 1.59.0 and newer.

`rust-asn1` is compatible with `#![no_std]` environments:

```toml
asn1 = { version = "0.18", default-features = false }
asn1 = { version = "0.19", default-features = false }
```

## Changelog
Expand All @@ -37,6 +37,10 @@ asn1 = { version = "0.18", default-features = false }
replacing the old `GeneralizedTime`.
([#492](https://github.com/alex/rust-asn1/pull/492))

- `#[derive(asn1::Asn1Read)]` and `#[derive(asn1::Asn1Write)]` now implement
["perfect derives"](https://smallcultfollowing.com/babysteps/blog/2022/04/12/implied-bounds-and-perfect-derive/).
([#496](https://github.com/alex/rust-asn1/pull/496))

[deps-rs-image]: https://deps.rs/repo/github/alex/rust-asn1/status.svg
[deps-rs-link]: https://deps.rs/repo/github/alex/rust-asn1
[docs-rs-image]: https://docs.rs/asn1/badge.svg
Expand Down
2 changes: 1 addition & 1 deletion asn1_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asn1_derive"
version = "0.18.0"
version = "0.19.0"
authors = ["Alex Gaynor <alex.gaynor@gmail.com>"]
repository = "https://github.com/alex/rust-asn1"
license = "BSD-3-Clause"
Expand Down

0 comments on commit 8573264

Please sign in to comment.