Skip to content

Commit

Permalink
Release 0.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Oct 31, 2022
1 parent 2ae09f7 commit e65cbfd
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ List of changes for this repo, including `atomic-cli`, `atomic-server` and `atom
By far most changes relate to `atomic-server`, so if not specified, assume the changes are relevant only for the server.
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).

## Unreleased
## [v0.34.0] - 2022-10-31

- Add parent parameter to search endpoint which scopes a search to only the descendants of the given resource. #226
- Bookmark endpoint now also retrieves `og:image` and `og:description` #510
Expand Down
8 changes: 4 additions & 4 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/atomicdata-dev/atomic-data-rust"
version = "0.33.1"
version = "0.34.0"

[dependencies]
atomic_lib = {version = "0.33.1", path = "../lib", features = ["config", "rdf"]}
atomic_lib = {version = "0.34.0", path = "../lib", features = ["config", "rdf"]}
clap = {version = "3", features = ["cargo"]}
colored = "2"
dirs = "4"
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/atomicdata-dev/atomic-data-rust"
version = "0.33.1"
version = "0.34.0"

[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.33.1"
version = "0.34.0"

[dependencies.serde]
features = ["derive"]
Expand Down
2 changes: 1 addition & 1 deletion desktop/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "Atomic Server",
"version": "0.33.2"
"version": "0.34.0"
},
"build": {
"distDir": "dist",
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/atomicdata-dev/atomic-data-rust"
version = "0.33.1"
version = "0.34.0"

# Enables benchmarks to use the features, such as Db
[[bench]]
Expand Down
4 changes: 2 additions & 2 deletions server/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"
repository = "https://github.com/atomicdata-dev/atomic-data-rust"
version = "0.33.1"
version = "0.34.0"
[[bin]]
name = "atomic-server"
path = "src/bin.rs"
Expand Down Expand Up @@ -74,7 +74,7 @@ version = "4"
[dependencies.atomic_lib]
features = ["config", "db", "rdf", "html"]
path = "../lib"
version = "0.33.1"
version = "0.34.0"

[dependencies.clap]
features = ["derive", "env", "cargo"]
Expand Down

0 comments on commit e65cbfd

Please sign in to comment.