Skip to content

Commit

Permalink
Release v5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcjohnson-kint committed Aug 3, 2017
1 parent 6a79aaf commit 02f9433
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion DeploymentDescriptor-environment.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"srvcId" : "inventory-storage-5.1.0-SNAPSHOT",
"srvcId" : "inventory-storage-5.1.0",
"descriptor" : {
"exec" : "java -jar ../mod-inventory-storage/target/inventory-storage-fat.jar -Dhttp.port=%p",
"env": [
Expand Down
2 changes: 1 addition & 1 deletion DeploymentDescriptor.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"srvcId" : "inventory-storage-5.1.0-SNAPSHOT",
"srvcId" : "inventory-storage-5.1.0",
"descriptor" : {
"exec" : "java -jar ../mod-inventory-storage/target/inventory-storage-fat.jar -Dhttp.port=%p embed_postgres=true"
}
Expand Down
2 changes: 1 addition & 1 deletion ModuleDescriptor.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"id": "inventory-storage-5.1.0-SNAPSHOT",
"id": "inventory-storage-5.1.0",
"name": "Inventory Storage Module",
"provides": [
{
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## 5.1.0 Unreleased
## 5.1.0 2017-08-03

* MODINVSTOR-12 Searching and sorting on material type properties (e.g. materialType.name)
* Upgrade RAML Module Builder to version 13.0.2
* Include implementation version in `id` in Module Descriptor
* Provides item-storage interface version 3.1 (notes additional CQL indexes in comments)
* Provides item-storage interface version 3.1 (notes additional CQL indexes in comments)

## 5.0.0 2017-06-07

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>inventory-storage</artifactId>
<groupId>org.folio</groupId>
<version>5.1.0-SNAPSHOT</version>
<version>5.1.0</version>

<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion register-managed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
deployment_descriptor=${1:-DeploymentDescriptor-environment.json}
tenant_id=${2:-demo_tenant}
okapi_proxy_address=${3:-http://localhost:9130}
module_id=${4:-inventory-storage-5.1.0-SNAPSHOT}
module_id=${4:-inventory-storage-5.1.0}

./okapi-registration/managed-deployment/register.sh \
${module_id} \
Expand Down
2 changes: 1 addition & 1 deletion register.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module_direct_address=${1:-http://localhost:9407}
module_instance_id=${2:-localhost-9407}
tenant_id=${3:-demo_tenant}
okapi_proxy_address=${4:-http://localhost:9130}
module_id=${5:-inventory-storage-5.1.0-SNAPSHOT}
module_id=${5:-inventory-storage-5.1.0}

./okapi-registration/unmanaged-deployment/register.sh \
${module_direct_address} \
Expand Down
2 changes: 1 addition & 1 deletion registration/proxy.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"id": "inventory-storage-5.1.0-SNAPSHOT",
"id": "inventory-storage-5.1.0",
"name": "Inventory Storage Module",
"provides": [
{
Expand Down
2 changes: 1 addition & 1 deletion unregister-managed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
instance_id=${1:-}
tenant_id=${2:-demo_tenant}
okapi_proxy_address=${3:-http://localhost:9130}
module_id=${4:-inventory-storage-5.1.0-SNAPSHOT}
module_id=${4:-inventory-storage-5.1.0}

./okapi-registration/managed-deployment/unregister.sh \
${instance_id} \
Expand Down
2 changes: 1 addition & 1 deletion unregister.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

instance_id=${1:-localhost-9407}
tenant_id=${2:-demo_tenant}
module_id=${3:-inventory-storage-5.1.0-SNAPSHOT}
module_id=${3:-inventory-storage-5.1.0}

./okapi-registration/unmanaged-deployment/unregister.sh \
${instance_id} \
Expand Down

0 comments on commit 02f9433

Please sign in to comment.