Skip to content

Commit f4c48e9

Browse files
committed
Fix docs
1 parent cc8d1e8 commit f4c48e9

File tree

18 files changed

+22195
-9068
lines changed

18 files changed

+22195
-9068
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ So please first send an e-mail to [email protected] describing the issue, and then
200200

201201
1. Commit changes
202202
1. Make sure all tests run properly
203-
1. Test, build and update the `/browser` versions (`package.json` files, see contribute.md)
203+
1. Test, build and update the `/browser` versions (`package.json` files, see `./browser/contributing.md`)
204204
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.
205205
1. Publish to cargo: `cargo publish`. First `lib`, then `cli` and `server`.
206206
1. Publish to `npm` (see `browser/contribute.md`)

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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

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

5-
## Unreleased
5+
## v0.39.0
66

77
### Atomic Browser
88

99
- [#855](https://github.com/atomicdata-dev/atomic-server/issues/855) Add a dialog that shows how to fetch and use the current resource in your code.
10-
- [#825](https://github.com/atomicdata-dev/atomic-server/issues/825) Folder display styles are now saved locally instead of on the resource. The display style property will now act as the default view style.
1110
- [#896](https://github.com/atomicdata-dev/atomic-server/issues/896) Fix an issue where sidebar items require a double tap on iOS.
1211
- Updated look of the default resource form.
1312
- [#896](https://github.com/atomicdata-dev/atomic-server/issues/896) Fix an issue where sidebar items require a double tap on iOS.

browser/CONTRIBUTING.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ Talk with other devs on our [Discord][discord-url]!
1313
- `pnpm lint-fix`
1414
- commit any changes (if they are there)
1515
- `pnpm build` to build typescript files (don't skip this!)
16-
- `pnpm build-server` builds and copies assets to `../atomic-data-rust` folder (.js builds and playwright end-to-end tests). Make sure that `atomic-data-rust` directory exists on your machine as a sibling of `atomic-data-browser`.
17-
- `pnpm test` (don't you publish a broken build!), make sure `atomic-server` is running on `localhost`.
18-
- Update the `package.json` files for `lib`, `rust`, and `data-browser` with a new version number. Try to match the version number with `atomic-data-rust`
16+
- make sure `atomic-server` is running on `localhost`.
17+
- `pnpm test`
18+
- `pnpm test-e2e`
19+
- Update the `package.json` files for `lib`, `rust`, and `data-browser` with a new version number. Match the version number with `atomic-data-rust`
1920
- Check the [changelog](changelog.md), make sure the headers are correct
20-
- commit any changes, name it `vX.XX.XX`
21+
- Now do the rust libraries
22+
- Commit any changes, name it `vX.XX.XX`
2123
- `pnpm publish -r`
2224
- Choose a new version. Versions should match `atomic-data-rs`.
2325
- This updates the `package.json` files, creates a commit, tags it, pushes it to github, and publishes the builds to npm.

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.38.0",
2+
"version": "0.39.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.38.0",
2+
"version": "0.39.0",
33
"author": {
44
"email": "[email protected]",
55
"name": "Joep Meindertsma"

browser/e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.38.0",
2+
"version": "0.39.0",
33
"author": {
44
"email": "[email protected]",
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.38.0",
2+
"version": "0.39.0",
33
"author": "Joep Meindertsma",
44
"dependencies": {
55
"@noble/ed25519": "1.6.0",

browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"eslint-plugin-import": "^2.26.0"
2828
},
2929
"name": "@tomic/root",
30-
"version": "0.38.0",
30+
"version": "0.39.0",
3131
"private": true,
3232
"type": "module",
3333
"scripts": {

0 commit comments

Comments
 (0)