Skip to content

Commit d6af506

Browse files
committed
release: 2023.6.1
1 parent 080ac6b commit d6af506

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2023.6.0
2+
current_version = 2023.6.1
33
tag = True
44
commit = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)

authentik/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from os import environ
33
from typing import Optional
44

5-
__version__ = "2023.6.0"
5+
__version__ = "2023.6.1"
66
ENV_GIT_HASH_KEY = "GIT_BUILD_HASH"
77

88

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
volumes:
3333
- redis:/data
3434
server:
35-
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2023.6.0}
35+
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2023.6.1}
3636
restart: unless-stopped
3737
command: server
3838
environment:
@@ -53,7 +53,7 @@ services:
5353
- postgresql
5454
- redis
5555
worker:
56-
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2023.6.0}
56+
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2023.6.1}
5757
restart: unless-stopped
5858
command: worker
5959
environment:

internal/constants/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ func UserAgent() string {
2929
return fmt.Sprintf("authentik@%s", FullVersion())
3030
}
3131

32-
const VERSION = "2023.6.0"
32+
const VERSION = "2023.6.1"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ filterwarnings = [
113113

114114
[tool.poetry]
115115
name = "authentik"
116-
version = "2023.6.0"
116+
version = "2023.6.1"
117117
description = ""
118118
authors = ["authentik Team <[email protected]>"]
119119

schema.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: authentik
4-
version: 2023.6.0
4+
version: 2023.6.1
55
description: Making authentication simple.
66
contact:
77

web/src/common/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const SUCCESS_CLASS = "pf-m-success";
33
export const ERROR_CLASS = "pf-m-danger";
44
export const PROGRESS_CLASS = "pf-m-in-progress";
55
export const CURRENT_CLASS = "pf-m-current";
6-
export const VERSION = "2023.6.0";
6+
export const VERSION = "2023.6.1";
77
export const TITLE_DEFAULT = "authentik";
88
export const ROUTE_SEPARATOR = ";";
99

0 commit comments

Comments
 (0)