Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ba3c595

Browse files
committedFeb 1, 2024
v0.37.0
1 parent 4de20cb commit ba3c595

File tree

12 files changed

+23
-19
lines changed

12 files changed

+23
-19
lines changed
 

‎CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ By far most changes relate to `atomic-server`, so if not specified, assume the c
55
**Changes to JS assets (including the front-end and JS libraries) are not shown here**, but in [`/browser/CHANGELOG`](/browser/CHANGELOG.md).
66
See [STATUS.md](server/STATUS.md) to learn more about which features will remain stable.
77

8-
## UNRELEASED
8+
## [v0.37.0] - 2024-02-01
99

10+
- Refactor `atomic_lib::Resource` propval methods (e.g. `set_propval` => `set`), make them chainable. #822
11+
- Make `set_propval` and `set_propval_shortname` chainable #785
12+
- Deterministic serialization JSON AD #794
1013
- Use `musl` + `alpine` builds for docker images, way smaller images #620
1114
- Support multi-platform docker builds #731
1215
- Remove deprecated ENV vars #732
1316
- Fix no Agent as drive
1417
- Add `clear` option to error component (resets all front-end state)
1518
- Add `Agent::from_secret` #785
16-
- Make `set_propval` and `set_propval_shortname` chainable #785
1719
- Don't use default agent when fetching with Db #787
18-
- Deterministic serialization JSON AD #794
1920
- Fix HTTPS / TLS setup #768
20-
- Refactor `atomic_lib::Resource` propval methods (e.g. `set_propval` => `set`), make them chainable. #822
2121

2222
## [v0.36.1] - 2023-12-06
2323

‎CONTRIBUTE.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,11 @@ So please first send an e-mail to joep@ontola.io describing the issue, and then
200200

201201
1. Commit changes
202202
1. Make sure all tests run properly
203-
1. Use `cargo workspaces version patch` (and maybe replace `patch` with the `minor`) to update all `cargo.toml` files in one command. You'll need to `cargo install cargo-workspaces` if this command is not possible.
203+
1. Test, build and update the `/browser` versions (`package.json` files, see contribute.md)
204+
1. Use `cargo workspaces version patch --no-git-commit` (and maybe replace `patch` with the `minor`) to update all `cargo.toml` files in one command. You'll need to `cargo install cargo-workspaces` if this command is not possible.
205+
1. Publish to cargo: `cargo publish`. First `lib`, then `cli` and `server`.
206+
1. Publish to `npm` (see `browser/contribute.md`)
207+
1. Update the `CHANGELOG.md` files (browser and root)
204208

205209
The following should be triggered automatically:
206210

‎Cargo.lock

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

‎browser/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This changelog covers all three packages, as they are (for now) updated as a whole
44

5-
## UNRELEASED
5+
## v0.37.0
66

77
### Atomic Browser
88

‎browser/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.36.1",
2+
"version": "0.37.0",
33
"author": "Polle Pas",
44
"dependencies": {
55
"@tomic/lib": "workspace:*",

‎browser/data-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.35.0",
2+
"version": "0.37.0",
33
"author": {
44
"email": "joep@ontola.io",
55
"name": "Joep Meindertsma"

‎browser/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.36.1",
2+
"version": "0.37.0",
33
"author": "Joep Meindertsma",
44
"dependencies": {
55
"@noble/ed25519": "1.6.0",

‎browser/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.36.1",
2+
"version": "0.37.0",
33
"author": "Joep Meindertsma",
44
"description": "Atomic Data React library",
55
"dependencies": {

‎browser/svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@
4747
"type": "module",
4848
"types": "dist/index.d.ts",
4949
"typings": "./dist/index.d.ts",
50-
"version": "0.36.1"
50+
"version": "0.37.0"
5151
}

‎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/atomicdata-dev/atomic-server"
9-
version = "0.36.1"
9+
version = "0.37.0"
1010

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

‎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/atomicdata-dev/atomic-server"
9-
version = "0.36.1"
9+
version = "0.37.0"
1010

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

‎server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "atomic-server"
99
readme = "./README.md"
1010
repository = "https://github.com/atomicdata-dev/atomic-server"
11-
version = "0.36.1"
11+
version = "0.37.0"
1212
include = ["src/**/*", "Cargo.toml", "assets_tmp", "build.rs"]
1313

1414
[[bin]]
@@ -88,7 +88,7 @@ version = ">= 4.0.1"
8888
[dependencies.atomic_lib]
8989
features = ["config", "db", "rdf", "html"]
9090
path = "../lib"
91-
version = "0.36.1"
91+
version = "0.37.0"
9292

9393
[dependencies.clap]
9494
features = ["derive", "env", "cargo"]

0 commit comments

Comments
 (0)
Please sign in to comment.