Skip to content

Commit bd0023e

Browse files
committed
chore: release of 0.4.5 version
1 parent c99896e commit bd0023e

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

NEWS.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
0.x (upcoming release)
22

3+
0.4.5
4+
(infrastructure) migrate to Spring Boot 2.1
5+
36
0.4.4
47
- (feature) a series can be marked as a similar to another one
58
- (feature) series images can be replaced

infra/docker/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
web:
5-
image: phpcoder/mystamps:0.4.4
5+
image: phpcoder/mystamps:0.4.5
66
cap_drop:
77
- 'ALL'
88
ports:

infra/kubernetes/deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ spec:
1515
app: mystamps
1616
spec:
1717
containers:
18-
- image: phpcoder/mystamps:0.4.4
18+
- image: phpcoder/mystamps:0.4.5
1919
name: mystamps

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>ru.mystamps</groupId>
77
<artifactId>mystamps</artifactId>
8-
<version>0.4.5-SNAPSHOT</version>
8+
<version>0.4.5</version>
99
<packaging>war</packaging>
1010

1111
<dependencies>

src/main/frontend/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mystamps-frontend",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"private": true,
55
"description": "Frontend of https://my-stamps.ru",
66
"keywords": [

src/main/java/ru/mystamps/web/feature/site/ResourceUrl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public final class ResourceUrl {
3232
public static final String STATIC_RESOURCES_URL = "https://stamps.filezz.ru";
3333

3434
// MUST be updated when any of our resources were modified
35-
public static final String RESOURCES_VERSION = "v0.4.4.5";
35+
public static final String RESOURCES_VERSION = "v0.4.5.0";
3636

3737
// CheckStyle: ignore LineLength for next 16 lines
3838
private static final String CATALOG_UTILS_JS = "/public/js/" + RESOURCES_VERSION + "/CatalogUtils.min.js";

0 commit comments

Comments
 (0)