Skip to content

Commit 3cf1620

Browse files
committed
update version
1 parent 98b68bc commit 3cf1620

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ $ mvn clean spring-boot:run -Dproduction
6666
$ mvn clean package -DskipTests -Dproduction -Dassets.uri=file:/opt/vireo/ -Dconfig.uri=file:/opt/vireo/config/
6767
```
6868

69-
If build succeeds, you should have both a `vireo-4.3.1.war` and a `vireo-4.3.1-install.zip` in the `target/` directory. When building for production required static assets are copied into the packaged war file and the index.html template is optimized for production. For development a symlink is used to allow the application to access required static assets.
69+
If build succeeds, you should have both a `vireo-4.3.2.war` and a `vireo-4.3.2-install.zip` in the `target/` directory. When building for production required static assets are copied into the packaged war file and the index.html template is optimized for production. For development a symlink is used to allow the application to access required static assets.
7070

7171
#### Apache Reverse Proxy Config
7272

@@ -117,7 +117,7 @@ Unzip package into preferred directory (or any directory you choose):
117117

118118
```bash
119119
$ cd /opt/vireo
120-
$ unzip vireo-4.3.1-install.zip
120+
$ unzip vireo-4.3.2-install.zip
121121
```
122122

123123
### Directory Structure of installed package
@@ -190,13 +190,13 @@ ln -s /opt/vireo/webapp /opt/tomcat/webapps/ROOT
190190
Copy war file into Tomcat webapps directory (your location may vary -- this is an example):
191191

192192
```bash
193-
$ cp ~/vireo-4.3.1.war /usr/local/tomcat/webapps/vireo.war
193+
$ cp ~/vireo-4.3.2.war /usr/local/tomcat/webapps/vireo.war
194194
```
195195

196196
or as root:
197197

198198
```bash
199-
$ cp ~/vireo-4.3.1.war /usr/local/tomcat/webapps/ROOT.war
199+
$ cp ~/vireo-4.3.2.war /usr/local/tomcat/webapps/ROOT.war
200200
```
201201

202202
**if not specifying assets.uri during build the assets will be stored under the vireo webapp's classpath, /opt/tomcat/webapps/vireo/WEB-INF/classes**
@@ -209,7 +209,7 @@ $ cp ~/vireo-4.3.1.war /usr/local/tomcat/webapps/ROOT.war
209209
## Running WAR as a stand-alone Spring Boot application
210210

211211
```bash
212-
java -jar target/vireo-4.3.1.war
212+
java -jar target/vireo-4.3.2.war
213213
```
214214

215215
<div align="right">(<a href="#readme-top">back to top</a>)</div>

build/appConfig.js.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var appConfig = {
22

3-
'version': '4.3.1',
3+
'version': '4.3.2',
44

55
'allowAnonymous': true,
66
'anonymousRole': 'ROLE_ANONYMOUS',

example.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
##############################
55

66
IMAGE_HOST=127.0.0.1
7-
IMAGE_VERSION=4.3.1
7+
IMAGE_VERSION=4.3.2
88
SERVICE_PROJECT=tdl
99
SERVICE_PATH=vireo
1010

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vireo",
33
"private": false,
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"description": "Vireo 4",
66
"homepage": "https://github.com/TexasDigitalLibrary/Vireo",
77
"repository": {

pom.xml

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

77
<groupId>org.tdl</groupId>
88
<artifactId>vireo</artifactId>
9-
<version>4.3.1</version>
9+
<version>4.3.2</version>
1010

1111
<name>Vireo</name>
1212
<description>Vireo Thesis and Dissertation Submission System</description>

0 commit comments

Comments
 (0)