Skip to content

Commit c1f1b01

Browse files
committed
vint64 v0.1.0
1 parent c6d9246 commit c1f1b01

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vint64/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.1.0 (2020-01-30)
2+
3+
- Initial release

vint64/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "vint64"
33
description = "Simple and efficient variable-length integer encoding"
4-
version = "0.0.0" # Also update html_root_url in lib.rs when bumping this
4+
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
55
authors = ["Tony Arcieri <[email protected]>"]
66
license = "Apache-2.0"
77
edition = "2018"

vint64/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
//! [Matroska]: https://www.matroska.org/
4242
4343
#![no_std]
44-
#![doc(html_root_url = "https://docs.rs/vint64/0.0.0")]
44+
#![doc(html_root_url = "https://docs.rs/vint64/0.1.0")]
4545
#![forbid(unsafe_code)]
4646
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
4747

0 commit comments

Comments
 (0)