Skip to content

Commit d54c819

Browse files
committed
Prepare for v0.36.0 release
1 parent 3bf90ae commit d54c819

File tree

15 files changed

+253
-291
lines changed

15 files changed

+253
-291
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
List of changes for this repo, including `atomic-cli`, `atomic-server` and `atomic-lib`.
44
By far most changes relate to `atomic-server`, so if not specified, assume the changes are relevant only for the server.
5-
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).
5+
**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.36.0] - 2023-11-02
99

1010
- Switch to monorepo. Include `atomic-data-browser` in this repo #216
1111
- Add Tables (edit, keyboard support, sorting, more) #638

CONTRIBUTE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Check out the [Roadmap](https://docs.atomicdata.dev/roadmap.html) if you want to
1818
- [Improve local compilation speed](#improve-local-compilation-speed)
1919
- [Cross compilation](#cross-compilation)
2020
- [IDE setup (VSCode)](#ide-setup-vscode)
21+
- [Branching](#branching)
2122
- [Testing](#testing)
2223
- [Code coverage](#code-coverage)
2324
- [Debugging](#debugging)

Cargo.lock

Lines changed: 18 additions & 5 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+
## 0.36.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.35.2",
2+
"version": "0.36.0",
33
"author": "Polle Pas",
44
"dependencies": {
55
"@tomic/lib": "workspace:*",

browser/data-browser/package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"polished": "^4.1.0",
2121
"query-string": "^7.0.0",
2222
"quick-score": "^0.0.10",
23-
"react": "^18.0.0",
23+
"react": "^18.2.0",
2424
"react-colorful": "^5.1.1",
25-
"react-dom": "^18.0.0",
25+
"react-dom": "^18.2.0",
2626
"react-dropzone": "^11.4.2",
2727
"react-helmet-async": "^1.3.0",
2828
"react-hot-toast": "^2.4.0",
@@ -35,19 +35,16 @@
3535
"react-router": "^6.9.0",
3636
"react-router-dom": "^6.9.0",
3737
"react-virtualized-auto-sizer": "^1.0.7",
38-
"react-window": "^1.8.7",
38+
"react-window": "^1.8.9",
3939
"reactflow": "^11.8.3",
4040
"remark-gfm": "^3.0.1",
4141
"styled-components": "^6.0.7",
4242
"stylis": "4.3.0",
4343
"yamde": "^1.7.1"
4444
},
4545
"devDependencies": {
46-
"@types/react": "^18.0.10",
47-
"@types/react-dom": "^18.0.5",
4846
"@types/react-pdf": "^6.2.0",
49-
"@types/react-router-dom": "^5.0.0",
50-
"@types/react-window": "^1.8.5",
47+
"@types/react-window": "^1.8.7",
5148
"babel-plugin-styled-components": "^2.1.4",
5249
"csstype": "^3.1.0",
5350
"gh-pages": "^3.1.0",

browser/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"chai": "^4.3.4",
1515
"typescript": "^4.8",
1616
"whatwg-fetch": "^3.6.2",
17-
"@tomic/cli": "^0.35.2"
17+
"@tomic/cli": "workspace:*"
1818
},
1919
"files": [
2020
"dist"

browser/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
"@types/chai": "^4.2.22",
77
"@types/jest": "^27.0.2",
88
"@types/node": "^16.11.4",
9-
"@types/react": "^18.0.20",
10-
"@types/react-router-dom": "^5.0.0",
9+
"@types/react": "^18.2.34",
10+
"@types/react-dom": "^18.2.14",
11+
"@types/react-router-dom": "^5.3.3",
1112
"@typescript-eslint/eslint-plugin": "^5.9.0",
1213
"@typescript-eslint/parser": "^5.9.0",
1314
"@vitejs/plugin-react": "^1.3.0",
@@ -30,7 +31,7 @@
3031
"vite": "^3.0.5"
3132
},
3233
"name": "@tomic/root",
33-
"version": "0.34.3",
34+
"version": "0.36.0",
3435
"private": true,
3536
"type": "module",
3637
"scripts": {

0 commit comments

Comments
 (0)