Skip to content

Commit

Permalink
📦2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sansth1010 committed Aug 18, 2023
1 parent 6e75d80 commit 5da9dde
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG.md

## 2.1.0
- Version bump to DCAT 2.1.1

## 2.0.2
- Added `access` and `xsd` context for DCAT AP 2.1.1 upgrade [#40](https://github.com/koopjs/koop-output-dcat-ap-201/pull/41)

Expand Down
2 changes: 1 addition & 1 deletion 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": "@koopjs/koop-output-dcat-ap-201",
"version": "2.0.2",
"version": "2.1.0",
"description": "A Koop output plugin for the DCAT-AP 2.0.1 specification",
"main": "src/index.js",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('Output Plugin', () => {
expect(plugin.constructor.version).toBeDefined();
expect(plugin.constructor.routes).toEqual([
{
path: '/dcat-ap/2.0.1',
path: '/dcat-ap/2.1.1',
methods: ['get'],
handler: 'serve',
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export = class OutputDcatAp201 {
static version = version;
static routes = [
{
path: '/dcat-ap/2.0.1',
path: '/dcat-ap/2.1.1',
methods: ['get'],
handler: 'serve',
},
Expand Down

0 comments on commit 5da9dde

Please sign in to comment.