Selaa lähdekoodia

Cargo.toml: upgrade to version 0.1.0

Bump version number to release a new crate version.

We're not-so-stable yet, especially with all the changes we had other
the last days, so it seems early to change the major version. On the
other hand, we got many changes since the previous version of the crate:
assembler, disassembler, Rust API to build programs; custom verifiers;
error handling; many fixes, etc. So we'll bump the second digit and tag
version 0.1.0.
Quentin Monnet 6 vuotta sitten
vanhempi
commit
6d3fb1d51c
2 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 1 1
      Cargo.toml
  2. 2 2
      README.md

+ 1 - 1
Cargo.toml

@@ -2,7 +2,7 @@
 
 # Project metadata
 name = "rbpf"
-version = "0.0.3"
+version = "0.1.0"
 authors = ["Quentin Monnet <quentin.monnet@netronome.com>"]
 
 # Additional metadata for packaging

+ 2 - 2
README.md

@@ -47,7 +47,7 @@ file:
 
 ```toml
 [dependencies]
-rbpf = "0.0.2"
+rbpf = "0.1.0"
 ```
 
 You can also use the development version from this GitHub repository. This
@@ -360,7 +360,7 @@ to your `Cargo.toml` file.
 
 ```toml
 [dependencies]
-rbpf = "0.0.2"
+rbpf = "0.1.0"
 elf = "0.0.10"
 ```