Skip to content

Commit

Permalink
Set the version number to 1.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
desruisseaux committed Oct 6, 2023
1 parent 9cc3d31 commit 6f5b664
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion endorsed/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/
group = "org.apache.sis"
version = "1.4-SNAPSHOT"
version = "1.4"

/*
* "org.apache.sis.buildtools" is a custom Gradle plugin for building a project with Module Source Hierarchy
Expand Down
2 changes: 1 addition & 1 deletion endorsed/src/org.apache.sis.openoffice/bundle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Launch:

```
cd target
unopkg add apache-sis-1.4-SNAPSHOT.oxt --log-file log.txt
unopkg add apache-sis-1.4.oxt --log-file log.txt
scalc -env:RTL_LOGFILE=log.txt
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ cd _<path to SIS project directory>_
mvn clean install
export CLASSPATH=~/.m2/repository/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.jar
export CLASSPATH=$PWD/core/sis-metadata/target/test-classes:$CLASSPATH
export CLASSPATH=$PWD/target/binaries/sis-referencing-1.4-SNAPSHOT.jar:$CLASSPATH
export CLASSPATH=$PWD/target/binaries/sis-referencing-1.4.jar:$CLASSPATH
export CLASSPATH=$PWD/core/sis-metadata/target/test-classes:$CLASSPATH
export CLASSPATH=$PWD/core/sis-referencing/target/test-classes:$CLASSPATH
cd <path to local copy of http://svn.apache.org/repos/asf/sis/data/non-free/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class Version implements CharSequence, Comparable<Version>, Serializable
/**
* The version of this Apache SIS distribution.
*/
public static final Version SIS = new Version(MAJOR_VERSION + "." + MINOR_VERSION + "-SNAPSHOT");
public static final Version SIS = new Version(MAJOR_VERSION + "." + MINOR_VERSION);

/**
* A few commonly used version numbers. This list is based on SIS needs, e.g. in {@code DataStore} implementations.
Expand Down
2 changes: 1 addition & 1 deletion optional/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/
group = "org.apache.sis"
version = "1.4-SNAPSHOT"
version = "1.4"

val pathToFX = System.getenv("PATH_TO_FX")
if (pathToFX == null) {
Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
============================================================== -->
<groupId>org.apache.sis</groupId>
<artifactId>parent</artifactId>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<packaging>pom</packaging>

<name>Apache SIS</name>
Expand Down

0 comments on commit 6f5b664

Please sign in to comment.