Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit 10aa019

Browse files
committed
Prepare 3.0.0 release
1 parent c5a8b23 commit 10aa019

7 files changed

+5
-7
lines changed

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Changes 3.0 (in development)
1+
### Changes 3.0.0
22

33
* Cate App 3.0 now requires the Web API service of the `cate 3.0+`
44
Python package.

Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ FROM nginx:stable-alpine
1212

1313
LABEL maintainer="[email protected]"
1414
LABEL name="Cate App"
15-
LABEL version="3.0.0-dev.7"
1615

1716
COPY --from=build /usr/src/app/build /usr/share/nginx/html
1817
# Once further nginx configuration needed, do this:

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ To prepare a Cate App release, follow these steps:
4747

4848
- [ ] `package.json`: Make sure `version` field is higher than the last release
4949
and compatible with [SemVer](https://semver.org/).
50-
- [ ] `Dockerfile`: Make sure `version` label is the same version.
5150
- [ ] `src/serviceWorker.ts`: Make sure `CATE_PWA_VERSION` constant is the same version.
5251
- [ ] `src/config.ts`: Make sure `CATE_APP_VERSION` constant is the same version.
5352
- [ ] `appveyor.yml`: Make sure `version` label is the same version appended by `-{build}`.

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 3.0.0-dev.7-{build}
1+
version: 3.0.0-{build}
22
image: Ubuntu
33
stack: node 12
44
install:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cate-app",
3-
"version": "3.0.0-dev.7",
3+
"version": "3.0.0",
44
"private": true,
55
"dependencies": {
66
"@blueprintjs/core": "^3.30.1",

src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// 1. with the version field in "../package.json".
33
// 2. with CATE_PWA_VERSION in "./serviceWorker.ts"
44
//
5-
export const CATE_APP_VERSION = "3.0.0-dev.7";
5+
export const CATE_APP_VERSION = "3.0.0";
66

77
const DEFAULT_API_ENDPOINT_DEV = 'https://dev.catehub.brockmann-consult.de/api/v2/';
88
const DEFAULT_API_ENDPOINT_PRODUCTION = 'https://catehub.climate.esa.int/api/v2';

src/serviceWorker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// "./service-worker.js" file changes). Therefore we use a version number here,
1515
// so we can force updates.
1616
//
17-
const CATE_PWA_VERSION = "3.0.0-dev.7";
17+
const CATE_PWA_VERSION = "3.0.0";
1818

1919
console.debug(`Cate PWA version ${CATE_PWA_VERSION}`);
2020

0 commit comments

Comments
 (0)