Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release prep for v2.0.1 #1603

Merged
merged 4 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
"url": "[email protected]:archesproject/arches-for-science.git",
"type": "git"
},
"version": "2.0.0",
"version": "2.0.1",
"dependencies": {
"@uppy/aws-s3": "3.6.2",
"@uppy/core": "3.13.0",
"@uppy/dashboard": "3.9.0",
"@uppy/drag-drop": "3.1.0",
"@uppy/progress-bar": "3.1.1",
"@uppy/companion-client": "3.1.3",
"arches": "archesproject/arches#stable/7.6.3",
"arches": "archesproject/arches#stable/7.6.4",
"dom-to-image": "^2.6.0",
"html2canvas": "^1.4.1",
"plotly.js-dist": "^2.24.3",
"three": "^0.148.0"
},
"devDependencies": {
"arches-dev-dependencies": "archesproject/arches-dev-dependencies#stable/7.6.3"
"arches-dev-dependencies": "archesproject/arches-dev-dependencies#stable/7.6.4"
},
"scripts": {
"build_development": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack --config ./webpack/webpack.config.dev.js",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [
"boto3==1.25.3",
"arches-templating>=0.1.2",
]
version = "2.0.0"
version = "2.0.1"

[project.optional-dependencies]
dev = [
Expand Down
40 changes: 40 additions & 0 deletions releases/2.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
## Arches for Science 2.0.1 Release Notes


### Bug Fixes and Enhancements

- Fixes error loading xy-reader [#1601](https://github.com/archesproject/arches-for-science/pull/1601)

### Dependency changes:

```
Python:
Upgraded:
None
JavaScript:
Upgraded:
Arches 7.6.3 -> 7.6.4
```

### Breaking Changes
Due to changes in how projects and apps are configured in the final release of Arches 7.6.3, there are significant project alterations that necessary to run this version of Arches for Science.

### Upgrading Arches for Science
1. Start by upgrading your project to run using [Arches 7.6](https://github.com/archesproject/arches/blob/dev/7.6.x/releases/7.6.0.md#upgrading-arches).

2. Update arches-for-science in your project's package.json file:
```
"arches_for_science": "archesproject/arches-for-science#dev/2.0.x"
```

3. Add arches_for_science to your project's dependencies in your pyproject.toml file:
```
"arches_for_science>=2.0.1,<2.1.0"
```

4. Upgrade to Arches for Science 2.0.1
```
pip install --upgrade arches_for_science==2.0.1
```


Loading