Skip to content

Commit

Permalink
Bump version to 3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Querela committed Sep 3, 2024
1 parent 8b83e01 commit 47a8531
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

# [3.12.0] - 2024-09-03

- Changes:
- **Breaking**: minimum java compiler version is `11` due to new Dropwizard dependency!

- Dependencies:
- Bump `io.dropwizard` to `3.0.8`. Migrate from `2.1.x` to `3.x`. [DW upgrade notes](https://www.dropwizard.io/en/release-3.0.x/manual/upgrade-notes/upgrade-notes-3_0_x.html)
- Bump base image version in `Dockerfile`.

# [3.11.0] - 2024-09-03

- Added:
Expand Down Expand Up @@ -245,6 +254,7 @@

For older changes, see commit history at [https://github.com/clarin-eric/fcs-sru-aggregator/commits/master](https://github.com/clarin-eric/fcs-sru-aggregator/commits/master?after=7ea45464475b0df6d4d8e2b93970c803b13ffb54+0&branch=master&qualified_name=refs%2Fheads%2Fmaster)

[3.12.0]: https://github.com/clarin-eric/fcs-sru-aggregator/releases/tag/3.12.0
[3.11.0]: https://github.com/clarin-eric/fcs-sru-aggregator/releases/tag/3.11.0
[3.10.1]: https://github.com/clarin-eric/fcs-sru-aggregator/releases/tag/3.10.1
[3.10.0]: https://github.com/clarin-eric/fcs-sru-aggregator/releases/tag/3.10.0
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fcs-aggregator",
"version": "3.11.0",
"version": "3.12.0",
"description": "FCS Aggregator for FCS 2.0",
"main": "index.html",
"repository": "https://github.com/clarin-eric/fcs-sru-aggregator",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>eu.clarin.sru.fcs</groupId>
<artifactId>aggregator</artifactId>
<version>3.11.0</version>
<version>3.12.0</version>
<name>FCS Aggregator</name>

<organization>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -50973,7 +50973,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
window.MyAggregator = window.MyAggregator || {};
window._paq = window._paq || [];

var VERSION = window.MyAggregator.VERSION = "v.3.11.0";
var VERSION = window.MyAggregator.VERSION = "v.3.12.0";

// TODO: set this via environment variables at build time (envify)
var URLROOT = window.MyAggregator.URLROOT = "";
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/js/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import createReactClass from "create-react-class";
window.MyAggregator = window.MyAggregator || {};
window._paq = window._paq || [];

var VERSION = window.MyAggregator.VERSION = "v.3.11.0";
var VERSION = window.MyAggregator.VERSION = "v.3.12.0";

// TODO: set this via environment variables at build time (envify)
var URLROOT = window.MyAggregator.URLROOT = "";
Expand Down

0 comments on commit 47a8531

Please sign in to comment.