Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Aug 21, 2024
1 parent cc8d1e8 commit f4c48e9
Show file tree
Hide file tree
Showing 18 changed files with 22,195 additions and 9,068 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ So please first send an e-mail to [email protected] describing the issue, and then

1. Commit changes
1. Make sure all tests run properly
1. Test, build and update the `/browser` versions (`package.json` files, see contribute.md)
1. Test, build and update the `/browser` versions (`package.json` files, see `./browser/contributing.md`)
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.
1. Publish to cargo: `cargo publish`. First `lib`, then `cli` and `server`.
1. Publish to `npm` (see `browser/contribute.md`)
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions browser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

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

## Unreleased
## v0.39.0

### Atomic Browser

- [#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.
- [#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.
- [#896](https://github.com/atomicdata-dev/atomic-server/issues/896) Fix an issue where sidebar items require a double tap on iOS.
- Updated look of the default resource form.
- [#896](https://github.com/atomicdata-dev/atomic-server/issues/896) Fix an issue where sidebar items require a double tap on iOS.
Expand Down
10 changes: 6 additions & 4 deletions browser/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ Talk with other devs on our [Discord][discord-url]!
- `pnpm lint-fix`
- commit any changes (if they are there)
- `pnpm build` to build typescript files (don't skip this!)
- `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`.
- `pnpm test` (don't you publish a broken build!), make sure `atomic-server` is running on `localhost`.
- 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`
- make sure `atomic-server` is running on `localhost`.
- `pnpm test`
- `pnpm test-e2e`
- Update the `package.json` files for `lib`, `rust`, and `data-browser` with a new version number. Match the version number with `atomic-data-rust`
- Check the [changelog](changelog.md), make sure the headers are correct
- commit any changes, name it `vX.XX.XX`
- Now do the rust libraries
- Commit any changes, name it `vX.XX.XX`
- `pnpm publish -r`
- Choose a new version. Versions should match `atomic-data-rs`.
- This updates the `package.json` files, creates a commit, tags it, pushes it to github, and publishes the builds to npm.
Expand Down
2 changes: 1 addition & 1 deletion browser/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.38.0",
"version": "0.39.0",
"author": "Polle Pas",
"dependencies": {
"@tomic/lib": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion browser/data-browser/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.38.0",
"version": "0.39.0",
"author": {
"email": "[email protected]",
"name": "Joep Meindertsma"
Expand Down
2 changes: 1 addition & 1 deletion browser/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.38.0",
"version": "0.39.0",
"author": {
"email": "[email protected]",
"name": "Joep Meindertsma"
Expand Down
2 changes: 1 addition & 1 deletion browser/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.38.0",
"version": "0.39.0",
"author": "Joep Meindertsma",
"dependencies": {
"@noble/ed25519": "1.6.0",
Expand Down
2 changes: 1 addition & 1 deletion browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"eslint-plugin-import": "^2.26.0"
},
"name": "@tomic/root",
"version": "0.38.0",
"version": "0.39.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
Loading

0 comments on commit f4c48e9

Please sign in to comment.