Skip to content

Commit

Permalink
const-oid v0.7.0 (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Nov 14, 2021
1 parent 5f78831 commit c28fdb7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
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.

14 changes: 14 additions & 0 deletions const-oid/CHANGELOG.md
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.8.0 (2021-11-14)
### Changed
- Rust 2021 edition upgrade; MSRV 1.56 ([#136])
- Rename `MAX_LENGTH` to `MAX_SIZE`; bump to `31` ([#174])
- Make `length` the first field of `ObjectIdentifier` ([#178])

### Fixed
- `debug_assert!` false positive on large arc ([#180])

[#136]: https://github.com/RustCrypto/formats/pull/136
[#174]: https://github.com/RustCrypto/formats/pull/174
[#178]: https://github.com/RustCrypto/formats/pull/178
[#180]: https://github.com/RustCrypto/formats/pull/180

## 0.6.2 (2021-10-14)
### Fixed
- Off-by-one error parsing large BER arcs ([#84])
Expand Down
2 changes: 1 addition & 1 deletion const-oid/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "const-oid"
version = "0.7.0-pre"
version = "0.7.0"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
description = """
Expand Down
2 changes: 1 addition & 1 deletion const-oid/src/lib.rs
Expand Up @@ -4,7 +4,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/const-oid/0.7.0-pre"
html_root_url = "https://docs.rs/const-oid/0.7.0"
)]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms)]
Expand Down
2 changes: 1 addition & 1 deletion der/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ edition = "2021"
rust-version = "1.56"

[dependencies]
const-oid = { version = "=0.7.0-pre", optional = true, path = "../const-oid" }
const-oid = { version = "0.7", optional = true, path = "../const-oid" }
crypto-bigint = { version = "0.3", optional = true, default-features = false, features = ["generic-array"] }
der_derive = { version = "=0.5.0-pre.1", optional = true, path = "derive" }
pem-rfc7468 = { version = "=0.3.0-pre", optional = true, path = "../pem-rfc7468" }
Expand Down

0 comments on commit c28fdb7

Please sign in to comment.