Skip to content

Commit 6b2226f

Browse files
author
Krzysiek_QM
committed
v.3.5.0
- migrated to java 17 - upgraded spring to 2.5.7
1 parent e823dc2 commit 6b2226f

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'pl.databucket'
9-
version = '3.4.4'
9+
version = '3.5.0'
1010
targetCompatibility = 17
1111
sourceCompatibility = 17
1212

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"homepage": ".",
33
"name": "databucket",
4-
"version": "3.4.4",
4+
"version": "3.5.0",
55
"private": true,
66
"dependencies": {
77
"@material-ui/core": "4.12.4",

frontend/src/components/dialogs/InfoDialog.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default function InfoDialog() {
6262
>
6363
<img style={{marginLeft: '100px', marginTop: '20px'}} src={DatabucketLogo} alt='' width='399' height='65'/>
6464
<div style={{margin: '20px'}}>
65-
<Typography color='secondary'>Version: <b>3.4.4</b></Typography>
65+
<Typography color='secondary'>Version: <b>3.5.0</b></Typography>
6666
<Link target='_blank' href='https://www.databucket.pl' color="primary">www.databucket.pl</Link><br/>
6767
<Link target='_blank' href='https://github.com/databucket/databucket-server' color="textSecondary">Source code</Link><br/>
6868
<Link target='_blank' href='https://github.com/databucket/databucket-server/wiki' color="textSecondary">Documentation</Link><br/>

frontend/src/components/public/LoginPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export default function LoginPage() {
296296
<div className="ContainerClass">
297297
{<img src={Logo} alt=''/>}
298298
{paper()}
299-
<Typography variant="caption">3.4.4</Typography>
299+
<Typography variant="caption">3.5.0</Typography>
300300
<MessageBox
301301
config={messageBox}
302302
onClose={() => setMessageBox({...messageBox, open: false})}

src/main/java/pl/databucket/server/configuration/SwaggerConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public Docket confDataContext() {
4848
private ApiInfo apiInfo() {
4949
return new ApiInfoBuilder()
5050
.title("Databucket API")
51-
.version("3.4.4")
51+
.version("3.5.0")
5252
.build();
5353
}
5454
}

src/main/resources/banner.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
██████╔╝██║ ██║ ██║ ██║ ██║██████╔╝╚██████╔╝╚██████╗██║ ██╗███████╗ ██║ ██████╔╝
88
╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝
99

10-
Databucket version: (v3.4.4)
10+
Databucket version: (v3.5.0)
1111
Spring Boot version:${spring-boot.formatted-version}

0 commit comments

Comments
 (0)