Skip to content

Commit 900587b

Browse files
committed
Bump to v0.31.1
1 parent 0dda20c commit 900587b

File tree

6 files changed

+20
-21
lines changed

6 files changed

+20
-21
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
List of changes for this repo, including `atomic-cli`, `atomic-server` and `atomic-lib`.
44
By far most changes relate to `atomic-server`, so if not specified, assume the changes are relevant only for the server.
55

6-
## [UNRELEASED]
6+
## [v0.31.1] - 2022-03-29
77

88
- Host the data-browser assets / JS bundles from `atomic-server`'s binary #185
99
- Allow reading Commits #307

Cargo.lock

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ license = "MIT"
66
name = "atomic-cli"
77
readme = "README.md"
88
repository = "https://github.com/joepio/atomic-data-rust"
9-
version = "0.31.0"
9+
version = "0.31.1"
1010

1111
[dependencies]
12-
atomic_lib = {version = "0.31.0", path = "../lib", features = ["config", "rdf"]}
12+
atomic_lib = {version = "0.31.1", path = "../lib", features = ["config", "rdf"]}
1313
clap = {version = "3.1.0", features = ["cargo"]}
1414
colored = "2.0.0"
1515
dirs = "3.0.1"

desktop/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "MIT"
77
name = "atomic-server-tauri"
88
repository = "https://github.com/joepio/atomic-data-rust"
9-
version = "0.31.0"
9+
version = "0.31.1"
1010

1111
[build-dependencies]
1212
[build-dependencies.tauri-build]
@@ -21,7 +21,7 @@ serde_json = "1.0"
2121
# We don't need HTTPS for desktop usage
2222
default-features = false
2323
path = "../server"
24-
version = "0.31.0"
24+
version = "0.31.1"
2525

2626
[dependencies.serde]
2727
features = ["derive"]

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT"
66
name = "atomic_lib"
77
readme = "README.md"
88
repository = "https://github.com/joepio/atomic-data-rust"
9-
version = "0.31.0"
9+
version = "0.31.1"
1010

1111
# Enables benchmarks to use the features, such as Db
1212
[[bench]]

server/Cargo.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ edition = "2021"
66
license = "MIT"
77
name = "atomic-server"
88
repository = "https://github.com/joepio/atomic-data-rust"
9-
version = "0.31.0"
9+
version = "0.31.1"
1010

1111
[[bin]]
1212
name = "atomic-server"
1313
path = "src/bin.rs"
1414

1515
[dependencies]
16-
actix = "0.12.0"
16+
actix = "=0.12.0"
1717
actix-cors = "0.6.0"
1818
actix-files = "0.6.0"
1919
actix-multipart = "0.4.0"
20-
actix-web-actors = "4.1.0"
20+
actix-web-actors = "=4.0.0"
2121
async-std = "1.10.0"
2222
awc = "3.0.0-beta.21"
2323
chrono = "0.4.19"
@@ -51,7 +51,7 @@ version = "4.0.1"
5151
[dependencies.atomic_lib]
5252
features = ["config", "db", "rdf"]
5353
path = "../lib"
54-
version = "0.31.0"
54+
version = "0.31.1"
5555

5656
[dependencies.clap]
5757
features = ["derive", "env", "cargo"]
@@ -74,9 +74,7 @@ features = ["env-filter"]
7474
version = "0.3.9"
7575

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

8179
[dev-dependencies]
8280
actix-rt = "2.5.1"

0 commit comments

Comments
 (0)