From c9c2492b7d4dfbbeb30627ff51aed5f6049c8f9a Mon Sep 17 00:00:00 2001 From: Cyrus Hiatt Date: Thu, 3 Oct 2024 11:42:52 -0700 Subject: [PATCH] 761 release prep (#11526) * Remove roadmap entry for 7.6 * Update version number --- README.md | 16 +--------------- arches/__init__.py | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index d9eca89841b..f0c21a059b2 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.0 release notes](https://github.com/archesproject/arches/blob/dev/7.6.x/releases/7.6.0.md) +[Version 7.6.1 release notes](https://github.com/archesproject/arches/blob/dev/7.6.x/releases/7.6.1.md) #### Quick Install @@ -63,20 +63,6 @@ Our general release cycle will typically be a functional release (either major i The following a general plan for the Arches project. Be aware this plan is tentative and subject to change. -## 7.6 LTS - Release date: Sept 15, 2024 -- Arches Application improvements -- Security enhancements -- Default deny permissions -- Support for pluggable permissions frameworks -- Standalone plugins -- Customizable Search -- Concept label bulk editor module -- Map performance improvments -- Postgres 14 becomes minimum Postgres version - -## 7.6 - Supported Applications - - Workflow Builder - ## 8.0 - Release date: June 15, 2025 - Activity stream enhancements - Support for editing and publishing graphs without having to remove resource instances diff --git a/arches/__init__.py b/arches/__init__.py index 59ec910e3d2..093725de3b2 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, 0, "beta", 0) +VERSION = (7, 6, 1, "beta", 0) __version__ = get_version(VERSION) diff --git a/package.json b/package.json index cacd7bd8071..039f104c50a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "arches", - "version": "7.6.0", + "version": "7.6.1", "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",