Skip to content

Commit 92fe26d

Browse files
authored
const-oid v0.6.0 (#463)
1 parent 4ff54f7 commit 92fe26d

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

Cargo.lock

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

const-oid/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.6.0 (2021-06-03)
8+
### Changed
9+
- Modernize and remove deprecations; MSRV 1.51+ ([#458])
10+
11+
[#458]: https://github.com/RustCrypto/utils/pull/458
12+
713
## 0.5.2 (2021-04-20)
814
### Added
915
- Expand README.md ([#376])

const-oid/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "const-oid"
3-
version = "0.6.0-pre"
3+
version = "0.6.0"
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
edition = "2018"

const-oid/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
#![doc(
5757
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
5858
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
59-
html_root_url = "https://docs.rs/const-oid/0.6.0-pre"
59+
html_root_url = "https://docs.rs/const-oid/0.6.0"
6060
)]
6161
#![forbid(unsafe_code, clippy::unwrap_used)]
6262
#![warn(missing_docs, rust_2018_idioms)]

der/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ keywords = ["asn1", "crypto", "itu", "pkcs"]
1515
readme = "README.md"
1616

1717
[dependencies]
18-
const-oid = { version = "=0.6.0-pre", optional = true, path = "../const-oid" }
18+
const-oid = { version = "0.6", optional = true, path = "../const-oid" }
1919
der_derive = { version = "0.3", optional = true, path = "derive" }
2020
typenum = { version = "1", optional = true }
2121

0 commit comments

Comments
 (0)