Skip to content

Commit e65cbfd

Browse files
committed
1 parent 2ae09f7 commit e65cbfd

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ List of changes for this repo, including `atomic-cli`, `atomic-server` and `atom
44
By far most changes relate to `atomic-server`, so if not specified, assume the changes are relevant only for the server.
55
Changes to JS assets are not included here, but in [`atomic-data-browser`'s CHANGELOG](https://github.com/atomicdata-dev/atomic-data-browser/blob/main/CHANGELOG.md).
66

7-
## Unreleased
7+
## [v0.34.0] - 2022-10-31
88

99
- Add parent parameter to search endpoint which scopes a search to only the descendants of the given resource. #226
1010
- Bookmark endpoint now also retrieves `og:image` and `og:description` #510

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

+2-2
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/atomicdata-dev/atomic-data-rust"
9-
version = "0.33.1"
9+
version = "0.34.0"
1010

1111
[dependencies]
12-
atomic_lib = {version = "0.33.1", path = "../lib", features = ["config", "rdf"]}
12+
atomic_lib = {version = "0.34.0", path = "../lib", features = ["config", "rdf"]}
1313
clap = {version = "3", features = ["cargo"]}
1414
colored = "2"
1515
dirs = "4"

desktop/Cargo.toml

+2-2
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/atomicdata-dev/atomic-data-rust"
9-
version = "0.33.1"
9+
version = "0.34.0"
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.33.1"
24+
version = "0.34.0"
2525

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

desktop/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"package": {
33
"productName": "Atomic Server",
4-
"version": "0.33.2"
4+
"version": "0.34.0"
55
},
66
"build": {
77
"distDir": "dist",

lib/Cargo.toml

+1-1
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/atomicdata-dev/atomic-data-rust"
9-
version = "0.33.1"
9+
version = "0.34.0"
1010

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

server/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "MIT"
77
name = "atomic-server"
88
repository = "https://github.com/atomicdata-dev/atomic-data-rust"
9-
version = "0.33.1"
9+
version = "0.34.0"
1010
[[bin]]
1111
name = "atomic-server"
1212
path = "src/bin.rs"
@@ -74,7 +74,7 @@ version = "4"
7474
[dependencies.atomic_lib]
7575
features = ["config", "db", "rdf", "html"]
7676
path = "../lib"
77-
version = "0.33.1"
77+
version = "0.34.0"
7878

7979
[dependencies.clap]
8080
features = ["derive", "env", "cargo"]

0 commit comments

Comments
 (0)