From 0a27ab3f5805fb0f8a41c9b8287138255a17e1ce Mon Sep 17 00:00:00 2001 From: Cyrus Hiatt Date: Fri, 17 Jan 2025 15:41:38 -0800 Subject: [PATCH] Update version for next patch --- README.md | 2 +- arches/__init__.py | 2 +- package.json | 2 +- releases/7.6.6.md | 31 +++++++++++++++++++++++++++++++ 4 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 releases/7.6.6.md diff --git a/README.md b/README.md index 5f6646bc54..f072ecb793 100644 --- a/README.md +++ b/README.md @@ -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.6.5 release notes](https://github.com/archesproject/arches/blob/dev/7.6.x/releases/7.6.5.md) +[Version 7.6.6 release notes](https://github.com/archesproject/arches/blob/dev/7.6.x/releases/7.6.6.md) #### Quick Install diff --git a/arches/__init__.py b/arches/__init__.py index 136d14189b..d0009331a4 100644 --- a/arches/__init__.py +++ b/arches/__init__.py @@ -11,6 +11,6 @@ pass # VERSION[3] options = "alpha", "beta", "rc", or "final" -VERSION = (7, 6, 5, "beta", 0) +VERSION = (7, 6, 6, "beta", 0) __version__ = get_version(VERSION) diff --git a/package.json b/package.json index 707b610032..09260fbc63 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "arches", - "version": "7.6.5", + "version": "7.6.6", "license": "AGPL-3.0-only", "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", diff --git a/releases/7.6.6.md b/releases/7.6.6.md new file mode 100644 index 0000000000..22718878ff --- /dev/null +++ b/releases/7.6.6.md @@ -0,0 +1,31 @@ +## Arches 7.6.6 Release Notes + +### Bug Fixes and Enhancements + + +### Dependency changes: + +``` +Python: + Upgraded: + none +JavaScript: + Upgraded: + none +``` + +### Upgrading Arches + +1. Upgrade to version 7.6.0 before proceeding by following the upgrade process in the [Version 7.6.0 release notes](https://github.com/archesproject/arches/blob/dev/7.6.x/releases/7.6.0.md) + +2. Upgrade to Arches 7.6.6 + + ``` + pip install --upgrade arches==7.6.6 + ``` + +3. If you are running Arches on Apache, restart your server: + ``` + sudo service apache2 reload + ``` +