Skip to content

Commit

Permalink
bumping to release-1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vkotronis committed Nov 2, 2020
1 parent 14b09c6 commit 3df7ca6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
COMPOSE_PROJECT_NAME=artemis
DB_VERSION=22
GUI_ENABLED=true
SYSTEM_VERSION=latest
SYSTEM_VERSION=release-1.6.0
HISTORIC=false

# Redis config
Expand Down
2 changes: 1 addition & 1 deletion artemis-chart/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
{{ include "artemis.labels" . | indent 4 }}
data:
guiEnabled: {{ .Values.guiEnable | default "true" | quote }}
systemVersion: {{ .Values.systemVersion | default "latest" | quote }}
systemVersion: {{ .Values.systemVersion | default "release-1.6.0" | quote }}
historic: {{ .Values.historic | default "false" | quote }}
redisHost: {{ .Release.Name }}-{{ .Values.redisHost | default "backend" }}-svc
redisPort: {{ .Values.redisPort | default "6379" | quote }}
Expand Down
2 changes: 1 addition & 1 deletion artemis-chart/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# general
guiEnabled: true
systemVersion: latest
systemVersion: release-1.6.0
historic: false
replicaCount: 1
# redis
Expand Down
21 changes: 20 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## master (latest) - YYYY-MM-DD
## [UNRELEASED] (latest) - YYYY-MM-DD
### Added
- TBD (Added a new feature)

### Changed
- TBD (Changed existing functionality)

### Fixed
- TBD (bug-fix)

### Removed
- TBD (removed a feature)

### Deprecated
- TBD (soon-to-be removed feature)

### Security
- TBD (addressing vulnerability)

## [1.6.0] (Achilles) - 2020-11-02
### Added
- Redirection to login page when session is expired (#404)
- Support RADIUS integration for user authentication (#409)
Expand Down

0 comments on commit 3df7ca6

Please sign in to comment.