Skip to content

Commit

Permalink
Bump version minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Querela committed Jan 18, 2023
1 parent 58e1e9e commit 0456e4d
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

# 3.2.0 - 2023-01-18

- Changes:
- Added Github Actions CI build script
- Upgraded dropwizard from 2.0.3 to 2.1.4
- Upgraded `org.apache.poi:poi-ooxml` from 3.17 to 5.2.3
- Added `org.glassfish.jersey.media:jersey-media-jaxb:2.36` for newer jaxb dependency
- Upgraded `eu.clarin.weblicht:wlfxb` from 1.3.1 to 1.4.3

# 3.1.0 - 2023-01-18

- Enhancements:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# fcs-sru-aggregator
CLARIN Federated Content Search v2.0 Aggregator – Augmenting your Search Engine
CLARIN Federated Content Search v3.0 Aggregator – Augmenting your Search Engine

# Introduction
The CLARIN Federated Content Search
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.1.0",
"version": "3.2.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 @@ -9,7 +9,7 @@

<groupId>eu.clarin.sru.fcs</groupId>
<artifactId>aggregator</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<name>FCS Aggregator</name>

<properties>
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 @@ -50618,7 +50618,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de

window.MyAggregator = window.MyAggregator || {};

var VERSION = window.MyAggregator.VERSION = "v.3.1.0";
var VERSION = window.MyAggregator.VERSION = "v.3.2.0";

var URLROOT = window.MyAggregator.URLROOT = window.location.pathname.substring(0, window.location.pathname.indexOf("/", 2)) ||
//window.location.pathname ||
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 @@ -13,7 +13,7 @@ import createReactClass from "create-react-class";

window.MyAggregator = window.MyAggregator || {};

var VERSION = window.MyAggregator.VERSION = "v.3.1.0";
var VERSION = window.MyAggregator.VERSION = "v.3.2.0";

var URLROOT = window.MyAggregator.URLROOT =
window.location.pathname.substring(0, window.location.pathname.indexOf("/", 2)) ||
Expand Down

0 comments on commit 0456e4d

Please sign in to comment.