Skip to content

Commit 7c0c811

Browse files
committed
v0.1.0 — First full release
1 parent b843969 commit 7c0c811

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
v0.1.0 (2022-11-05)
2+
-------------------
3+
First full release
4+
5+
v0.1.0-alpha (2022-11-04)
6+
-------------------------
7+
Alpha release

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "strtoint"
3-
version = "0.1.0-alpha"
3+
version = "0.1.0"
44
edition = "2021"
55
rust-version = "1.56"
66
description = "Parse integers from strings, with support for base prefixes"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) <!-- [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) -->
1+
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
22
[![CI Status](https://github.com/jwodder/strtoint/actions/workflows/test.yml/badge.svg)](https://github.com/jwodder/strtoint/actions/workflows/test.yml)
33
[![codecov.io](https://codecov.io/gh/jwodder/strtoint/branch/master/graph/badge.svg)](https://codecov.io/gh/jwodder/strtoint)
44
[![MIT License](https://img.shields.io/github/license/jwodder/strtoint.svg)](https://opensource.org/licenses/MIT)
55

6-
[GitHub](https://github.com/jwodder/strtoint) | [crates.io](https://crates.io/crates/strtoint) | [Documentation](https://docs.rs/strtoint) | [Issues](https://github.com/jwodder/strtoint/issues)
6+
[GitHub](https://github.com/jwodder/strtoint) | [crates.io](https://crates.io/crates/strtoint) | [Documentation](https://docs.rs/strtoint) | [Issues](https://github.com/jwodder/strtoint/issues) | [Changelog](https://github.com/jwodder/strtoint/blob/master/CHANGELOG.md)
77

88
`strtoint` provides a function of the same name for parsing integer literals
99
from strings, with support for the base prefixes `0x`, `0o`, and `0b` for
@@ -24,7 +24,7 @@ library in your Cargo project, add the following to your `Cargo.toml`:
2424

2525
```toml
2626
[dependencies]
27-
strtoint = "0.1.0-alpha"
27+
strtoint = "0.1.0"
2828
```
2929

3030

0 commit comments

Comments
 (0)