Skip to content

Commit

Permalink
Updating version.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidASeibert committed Nov 20, 2018
1 parent 89076cf commit d998084
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ FROM openjdk:8
EXPOSE 8080

WORKDIR /usr/src/app
COPY build/libs/ecs-browser-1.0.0rc3.jar ./
COPY build/libs/ecs-browser-1.0.0.jar ./

CMD [ "java", "-jar", "ecs-browser-1.0.0rc3.jar" ]
CMD [ "java", "-jar", "ecs-browser-1.0.0.jar" ]
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "ECS browser website"
group = 'com.emc.ecs'
version = '1.0.0rc3'
version = '1.0.0'

ext.licenseName = ''
ext.licenseUrl = ''
Expand Down Expand Up @@ -30,7 +30,7 @@ defaultTasks 'build'

jar {
baseName = 'ecs-browser'
version = '1.0.0rc3'
version = '1.0.0'
into('META-INF/dependency-license') {
from 'build/reports/dependency-license'
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/static/javascript/S3Browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ S3Browser = function( options, $parent ) {

// release version
/** @define {string} */
var S3_BROWSER_VERSION = '0.9.1';
var S3_BROWSER_VERSION = '1.0.0';
S3Browser.version = S3_BROWSER_VERSION;

/** @define {boolean} */
Expand Down

0 comments on commit d998084

Please sign in to comment.