Skip to content

Commit

Permalink
Bump package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
robertknight committed Jan 23, 2024
1 parent a5b0387 commit bf6bf07
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.3.0] - Unreleased
## [0.3.0] - 2024-01-23

### Breaking changes

Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ default-members = [

[package]
name = "rten"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Robert Knight"]
description = "Machine learning runtime"
Expand All @@ -32,7 +32,7 @@ flatbuffers = "22.10.26"
libm = "0.2.6"
rayon = "1.7.0"
smallvec = { version = "1.10.0", features = ["union", "const_generics", "const_new"] }
rten-tensor = { path = "./rten-tensor", version = "0.1.0" }
rten-tensor = { path = "./rten-tensor", version = "0.3.0" }
rten-vecmath = { path = "./rten-vecmath", version = "0.1.1" }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions rten-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-cli"
version = "0.1.0"
version = "0.3.0"
edition = "2021"
authors = ["Robert Knight"]
description = "CLI tool for inspecting and running RTen models"
Expand All @@ -10,8 +10,8 @@ repository = "https://github.com/robertknight/rten"

[dependencies]
fastrand = "1.9.0"
rten = { path = "../", version = "0.2.0" }
rten-tensor = { path = "../rten-tensor", version = "0.1.0" }
rten = { path = "../", version = "0.3.0" }
rten-tensor = { path = "../rten-tensor", version = "0.3.0" }
lexopt = "0.3.0"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion rten-examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-examples"
version = "0.1.0"
version = "0.3.0"
edition = "2021"
authors = ["Robert Knight"]
description = "Examples for using the rten library"
Expand Down
4 changes: 2 additions & 2 deletions rten-imageio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-imageio"
version = "0.1.0"
version = "0.3.0"
edition = "2021"
authors = ["Robert Knight"]
description = "Utilities for loading images for use with RTen"
Expand All @@ -11,4 +11,4 @@ repository = "https://github.com/robertknight/rten"
[dependencies]
image = { version = "0.24.6", default-features = false, features = ["png", "jpeg", "jpeg_rayon", "webp"] }
png = "0.17.6"
rten-tensor = { path = "../rten-tensor", version = "0.1.0" }
rten-tensor = { path = "../rten-tensor", version = "0.3.0" }
4 changes: 2 additions & 2 deletions rten-imageproc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-imageproc"
version = "0.1.0"
version = "0.3.0"
edition = "2021"
authors = ["Robert Knight"]
description = "Image tensor processing and geometry functions"
Expand All @@ -9,7 +9,7 @@ homepage = "https://github.com/robertknight/rten"
repository = "https://github.com/robertknight/rten"

[dependencies]
rten-tensor = { path = "../rten-tensor", version = "0.1.0" }
rten-tensor = { path = "../rten-tensor", version = "0.3.0" }

[lib]
crate-type = ["lib"]
2 changes: 1 addition & 1 deletion rten-tensor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rten-tensor"
version = "0.1.0"
version = "0.3.0"
edition = "2021"
authors = ["Robert Knight"]
description = "Tensor library for the RTen machine learning runtime"
Expand Down

0 comments on commit bf6bf07

Please sign in to comment.