Skip to content

Commit

Permalink
Update 7.5.3 version number (#11172)
Browse files Browse the repository at this point in the history
* Update version number

* Change release cadance to 9 months

* nit
  • Loading branch information
chiatt authored Jul 12, 2024
1 parent 5588902 commit e571b51
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Issue reports are encouraged! [Please read this article](http://polite.technolog
* [Report a Bug](https://github.com/archesproject/arches/issues/new?template=bug.md)
* [File a Feature Ticket](https://github.com/archesproject/arches/issues/new?template=feature.md)

[Version 7.5.2 release notes](https://github.com/archesproject/arches/blob/stable/7.5.2/releases/7.5.2.md)
[Version 7.5.3 release notes](https://github.com/archesproject/arches/blob/stable/7.5.3/releases/7.5.3.md)

#### Quick Install

Expand Down Expand Up @@ -49,7 +49,7 @@ If you run into problems, please review our full [installation documentation](ht

#### Release Cycle

Our general release cycle will typically be a functional release (either major if there are backward incompatible changes or minor, if there are not) every 6 months. Each functional release will typically be followed by one or more patch releases. See [semver.org](https://semver.org/) for version numbering.
Our general release cycle will typically be a functional release (either major if there are backward incompatible changes or minor, if there are not) every 9 months. Each functional release will typically be followed by one or more patch releases. See [semver.org](https://semver.org/) for version numbering.

- Functional releases will usually introduce new functionality to the application, but could also include styling updates, enhancements to the UX, bug fixes, and performance improvements.
- Patch releases are really only concerned with fixing any bugs related to the previous release or any other issues not yet addressed
Expand Down
2 changes: 1 addition & 1 deletion arches/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
except Exception as e:
pass

VERSION = (7, 5, 2, "beta", 0) # VERSION[3] options = "alpha", "beta", "rc", or "final"
VERSION = (7, 5, 3, "beta", 0) # VERSION[3] options = "alpha", "beta", "rc", or "final"

__version__ = get_version(VERSION)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arches",
"version": "7.5.2",
"version": "7.5.3",
"scripts": {
"build_production": "./arches/app/media/node_modules/.bin/cross-env NODE_PATH=./arches/app/media/node_modules NODE_OPTIONS=--max-old-space-size=2048 NODE_ENV=production ./arches/app/media/node_modules/.bin/webpack --config arches/webpack/webpack.config.prod.js",
"build_development": "./arches/app/media/node_modules/.bin/cross-env NODE_PATH=./arches/app/media/node_modules NODE_OPTIONS=--max-old-space-size=2048 ./arches/app/media/node_modules/.bin/webpack --config arches/webpack/webpack.config.dev.js",
Expand Down
2 changes: 1 addition & 1 deletion releases/7.5.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Arches 7.5.3 Release Notes

- Preserve tile sortorder during `import_business_data` (from JSON) #10874
- Fix child concepts not being deleted when a thesaurus is deleted #9444
- Prevent get_tile_data() from returning None for tiles holding only None, #10829
- Prevent get_tile_data() from returning None for tiles holding only None #10829
- Updates select dropdown to fix broken SPARQL import of concepts #10856
- Fixes mis-aligned buttons in photo editing workflow step #11052
- Fixes breaking error when cloning published graphs #10839
Expand Down

0 comments on commit e571b51

Please sign in to comment.