Skip to content

Commit 18afbd4

Browse files
committed
bump version because of new search feature
1 parent b45e2fc commit 18afbd4

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RERUM API v1 is a NodeJS web service for interaction with the RERUM digital obje
2828
3. **Create .env configuration file** (required for operation):
2929
```bash
3030
# Create .env file in repository root
31-
RERUM_API_VERSION=1.0.0
31+
RERUM_API_VERSION=1.1.0
3232
RERUM_BASE=http://localhost:3005
3333
RERUM_PREFIX=http://localhost:3005/v1/
3434
RERUM_ID_PREFIX=http://localhost:3005/v1/id/

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ npm install
3939
Create a file named `.env` in the root folder. In the above example, the root is `/code_folder/rerum_api`. `/code_folder/rerum_api/.env` looks like this:
4040

4141
```shell
42-
RERUM_API_VERSION = 1.0.0
42+
RERUM_API_VERSION = 1.1.0
4343
COLLECTION_ACCEPTEDSERVER = acceptedServer
4444
COLLECTION_V0 = annotation
4545
AUDIENCE = http://rerum.io/api

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ npm install
6464
Create a file named `.env` in the root folder. In the above example, the root is `/code_folder/rerum_api`. `/code_folder/rerum_api/.env` looks like this:
6565

6666
```shell
67-
RERUM_API_VERSION = 1.0.0
67+
RERUM_API_VERSION = 1.1.0
6868
RERUM_BASE = URL_OF_YOUR_DEPLOYMENT
6969
RERUM_PREFIX = URL_OF_YOUR_DEPLOYMENT/v1/
7070
RERUM_ID_PREFIX = URL_OF_YOUR_DEPLOYMENT/v1/id/

public/API.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
<meta charset="UTF-8">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<title>API (1.0.0) | rerum_server</title>
9-
<meta property="og:title" content="API (1.0.0)" />
8+
<title>API (1.1.0) | rerum_server</title>
9+
<meta property="og:title" content="API (1.1.0)" />
1010
<meta property="og:locale" content="en_US" />
1111
<meta name="description" content="A NodeJS web service for interaction with the RERUM digital object repository." />
1212
<meta property="og:description" content="A NodeJS web service for interaction with the RERUM digital object repository." />
1313
<link rel="canonical" href="https://store.rerum.io/API.html" />
1414
<meta property="og:url" content="https://store.rerum.io/API.html" />
1515
<meta property="og:site_name" content="rerum_server" />
1616
<script type="application/ld+json">
17-
{ "description": "A NodeJS web service for interaction with the RERUM digital object repository.", "url": "https://store.rerum.io/API.html", "@type": "WebPage", "headline": "API (1.0.0)", "@context": "https://schema.org" }
17+
{ "description": "A NodeJS web service for interaction with the RERUM digital object repository.", "url": "https://store.rerum.io/API.html", "@type": "WebPage", "headline": "API (1.1.0)", "@context": "https://schema.org" }
1818
</script>
1919
<link rel="stylesheet" href="stylesheets/api.css">
2020
</head>
@@ -39,9 +39,9 @@ <h3>
3939
Your data will be public and could be removed at any time. The sandbox functions as a public testbed and uses the development API; it is <u>not</u> meant for production applications.
4040
</p>
4141
<!-- TOC -->
42-
<h1 id="api-100">API (1.0.0)</h1>
42+
<h1 id="api-100">API (1.1.0)</h1>
4343
<ul>
44-
<li><a href="#api-10">API (1.0.0)</a>
44+
<li><a href="#api-10">API (1.1.0)</a>
4545
<ul>
4646
<li><a href="#registration"><b>Registration Prerequisite</b></a></li>
4747
<li><a href="#authorization"><b>Access Token Requirement</b></a></li>
@@ -1480,7 +1480,7 @@ <h2 id="__rerum"><code>__rerum</code> Property Explained</h2>
14801480
<tr>
14811481
<td>APIversion</td>
14821482
<td>String</td>
1483-
<td>Specific RERUM API release version for this data node, currently 1.0.0.</td>
1483+
<td>Specific RERUM API release version for this data node, currently 1.1.0.</td>
14841484
</tr>
14851485
<tr>
14861486
<td>history.prime</td>

utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
/**
1111
* Add the __rerum properties object to a given JSONObject.If __rerum already exists, it will be overwritten because this method is only called on new objects. Properties for consideration are:
12-
APIversion —1.0.0
12+
APIversion —1.1.0
1313
history.prime —if it has an @id, import from that, else "root"
1414
history.next —always []
1515
history.previous —if it has an @id, @id

0 commit comments

Comments
 (0)