Skip to content

Commit

Permalink
Bump to v0.31.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Mar 29, 2022
1 parent 0dda20c commit 900587b
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
List of changes for this repo, including `atomic-cli`, `atomic-server` and `atomic-lib`.
By far most changes relate to `atomic-server`, so if not specified, assume the changes are relevant only for the server.

## [UNRELEASED]
## [v0.31.1] - 2022-03-29

- Host the data-browser assets / JS bundles from `atomic-server`'s binary #185
- Allow reading Commits #307
Expand Down
17 changes: 9 additions & 8 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 cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ license = "MIT"
name = "atomic-cli"
readme = "README.md"
repository = "https://github.com/joepio/atomic-data-rust"
version = "0.31.0"
version = "0.31.1"

This comment has been minimized.

Copy link
@jonassmedegaard

jonassmedegaard Mar 30, 2022

Is tauri v0.31.0 now unusable here?
If newer version is only preferred not required then please only bump Cargo.lock (not Cargo.toml) - e.g. using command cargo update --package tauri --precise 0.30.1.

This comment has been minimized.

Copy link
@joepio

joepio Mar 30, 2022

Author Member

Yeah I could make this less strict. I don't think it's incompatible with 31.0.

This comment has been minimized.

Copy link
@joepio

joepio Mar 30, 2022

Author Member

Done


[dependencies]
atomic_lib = {version = "0.31.0", path = "../lib", features = ["config", "rdf"]}
atomic_lib = {version = "0.31.1", path = "../lib", features = ["config", "rdf"]}
clap = {version = "3.1.0", features = ["cargo"]}
colored = "2.0.0"
dirs = "3.0.1"
Expand Down
4 changes: 2 additions & 2 deletions desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "MIT"
name = "atomic-server-tauri"
repository = "https://github.com/joepio/atomic-data-rust"
version = "0.31.0"
version = "0.31.1"

[build-dependencies]
[build-dependencies.tauri-build]
Expand All @@ -21,7 +21,7 @@ serde_json = "1.0"
# We don't need HTTPS for desktop usage
default-features = false
path = "../server"
version = "0.31.0"
version = "0.31.1"

[dependencies.serde]
features = ["derive"]
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT"
name = "atomic_lib"
readme = "README.md"
repository = "https://github.com/joepio/atomic-data-rust"
version = "0.31.0"
version = "0.31.1"

# Enables benchmarks to use the features, such as Db
[[bench]]
Expand Down
12 changes: 5 additions & 7 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ edition = "2021"
license = "MIT"
name = "atomic-server"
repository = "https://github.com/joepio/atomic-data-rust"
version = "0.31.0"
version = "0.31.1"

[[bin]]
name = "atomic-server"
path = "src/bin.rs"

[dependencies]
actix = "0.12.0"
actix = "=0.12.0"
actix-cors = "0.6.0"
actix-files = "0.6.0"
actix-multipart = "0.4.0"
actix-web-actors = "4.1.0"
actix-web-actors = "=4.0.0"
async-std = "1.10.0"
awc = "3.0.0-beta.21"
chrono = "0.4.19"
Expand Down Expand Up @@ -51,7 +51,7 @@ version = "4.0.1"
[dependencies.atomic_lib]
features = ["config", "db", "rdf"]
path = "../lib"
version = "0.31.0"
version = "0.31.1"

[dependencies.clap]
features = ["derive", "env", "cargo"]
Expand All @@ -74,9 +74,7 @@ features = ["env-filter"]
version = "0.3.9"

[dependencies.actix-web-static-files]
git = "https://github.com/kilork/actix-web-static-files.git"
rev = "2d3b6160f0de4ba061c5d76b5704f34fb677f6df"
# version = "0.4.0"
version = "4.0.0"

[dev-dependencies]
actix-rt = "2.5.1"
Expand Down

0 comments on commit 900587b

Please sign in to comment.