Skip to content

Commit fc09e84

Browse files
committed
Updating versions for release.
1 parent 369321a commit fc09e84

2 files changed

Lines changed: 29 additions & 29 deletions

File tree

build.gradle

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@ buildscript {
88
}
99
}
1010
dependencies {
11-
// This sucks down a lot of stuff that 'normal' users wouldn't
11+
// This sucks down a lot of stuff that 'normal' users wouldn't
1212
// have and won't need anyway.
1313
if( project.hasProperty('releaseUser') ) {
1414
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
1515
}
1616
}
1717
}
18-
18+
1919
apply plugin: 'java'
2020
apply plugin: 'groovy'
2121
apply plugin: 'maven'
2222

23-
version='1.3.0-SNAPSHOT'
23+
version='1.3.0'
2424
group='com.simsilica'
2525

26-
ext.jmeVersion = "3.1.0-stable"
26+
ext.jmeVersion = "3.1.0-stable"
2727

2828
// Version meta-data
2929
ext {
30-
releaseDescription = "Sim-Math ${project.version}"
31-
releaseVcsTag = "${project.name}-v${project.version}"
30+
releaseDescription = "Sim-Math ${project.version}"
31+
releaseVcsTag = "${project.name}-v${project.version}"
3232
}
3333

3434
// Project-wide meta-data
@@ -63,12 +63,12 @@ configurations.compile {
6363
}
6464

6565
dependencies {
66-
// Pull in jme core for the math package for easy translation to/from JME
66+
// Pull in jme core for the math package for easy translation to/from JME
6767
// classes.
6868
compile "org.jmonkeyengine:jme3-core:$jmeVersion"
69-
69+
7070
compile 'org.slf4j:slf4j-api:1.7.13'
71-
71+
7272
testCompile 'junit:junit:4.12'
7373
testCompile 'org.codehaus.groovy:groovy-all:2.4.11'
7474
}
@@ -78,20 +78,20 @@ test {
7878
// I want to see the tests that are run and pass, etc.
7979
events "passed", "skipped", "failed", "standardOut", "standardError"
8080
}
81-
}
81+
}
8282

8383
// Configuration to produce maven-repo style -sources and -javadoc jars
8484
task sourcesJar(type: Jar) {
8585
classifier = 'sources'
8686
from sourceSets.main.allSource
87-
exclude '**/.backups'
87+
exclude '**/.backups'
8888
}
8989

9090
task javadocJar(type: Jar, dependsOn: javadoc) {
9191
classifier = 'javadoc'
9292
from javadoc.destinationDir
9393
}
94-
94+
9595
artifacts {
9696
archives sourcesJar
9797
archives javadocJar

release-notes.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
Version 1.3.0 (unreleased)
1+
Version 1.3.0 (latest)
22
--------------
33
* Added Quatd.fromAngles(double[])
44
* Added Quatd.equals() and Quatd.hashCode()
55
* Added Vec3d.isSimilar() and Quatd.isSimilar() that allow for
66
comparison of values within some epsilon.
7-
* Converted a System.out.println() in Vec3Bits to a log.debug() call.
7+
* Converted a System.out.println() in Vec3Bits to a log.debug() call.
88
* Added Vec3d.interpolateLocal().
9-
* Added Quatd.slerpLocal().
9+
* Added Quatd.slerpLocal().
1010
* Added PositionTransition3f and PositionTransition3d.
11-
* Deprecated PositionTransition in favor of PositionTransition3f or
11+
* Deprecated PositionTransition in favor of PositionTransition3f or
1212
PositionTransition3d.
1313
* Deprecated PositionTransition.getFrameVelocity() and did not port it
1414
to PositionTransition3f or PositionTransition3d.
1515

1616

17-
Version 1.2.0 (latest)
17+
Version 1.2.0
1818
--------------
1919
* Added Vec4i.toVec3d()
2020
* Added Vec3d.set(Vector3f)
2121
* Modified Vec3d.set(Vec3d) and set(index, val) to return Vec3d (this)
2222
* Added Quatd.set(Quaternion)
2323
* Added a Vec3d.xzy() swizzle method
24-
* Added filter package with Filterd interface and initial
24+
* Added filter package with Filterd interface and initial
2525
SimpleMovingMean filter implementation
2626
* Modified all Quatd.set() methods to return Quatd (this)
2727
* Modified Quatd.addScaledVectorLocal() to return Quatd (this)
2828
* Modified Vec3d.zeroEpsilon() and Vec4d.zeroEpsilon() to return
29-
Vec3d and Vec4d resepctively (this)
29+
Vec3d and Vec4d resepctively (this)
3030
* Modified all Vec3i void-return methods to return Vec3i (this)
3131
* Added Vec3d.divide() and divideLocal() methods.
3232
* Added Vec3d.multLocal(Vec3d) method
@@ -35,15 +35,15 @@ Version 1.2.0 (latest)
3535
* Suppressed some 'unchecked' warnings in TransitionBuffer since we
3636
know we're doing generic-voodoo in there.
3737
* Set sourceCompatibility to 1.7 and turned on detailed 'unchecked' warnings
38-
39-
4038

41-
Version 1.1.1
39+
40+
41+
Version 1.1.1
4242
--------------
4343
* Added Quaternion.toAngles()
4444

4545

46-
Version 1.1.0
46+
Version 1.1.0
4747
--------------
4848
* Added an alternate AaBBox.setCenter(double, double, double) method.
4949
* Added Matrix3d.addLocal(Matrix3d).
@@ -55,26 +55,26 @@ Version 1.1.0
5555
are NaN.
5656
* Added a Vec3d constructor that takes a JME Vector3f as a reciprocal to
5757
the existing toVector3f() method.
58-
* Added Grid and GridCell classes for standardizing the partitioning of
58+
* Added Grid and GridCell classes for standardizing the partitioning of
5959
3D space into regularly spaced cells.
60-
* Made several of the classes Serializable: Quatd, Vec3d, Vec3d, Matrix3d,
60+
* Made several of the classes Serializable: Quatd, Vec3d, Vec3d, Matrix3d,
6161
Matrix4d, and AaBBox.
6262
* Made Matrix3d, Matrix4d, and AaBBox cloneable.
6363
* Added a Quatd constructor that takes a JME Quaternion as a reciprocal to
6464
the existing toQuaternion() method.
6565

6666

67-
Version 1.0.2
67+
Version 1.0.2
6868
--------------
6969
* Modified TransitionBuffer to have a 'clamp' on getTransition()
7070
that when 'true' will use the old behavior of returning the
7171
earliest/latest transition for out-of-range times. For 'false',
7272
it will return null for out-of-range times.
73-
* Modified TransitionBuffer to remove the System.out.println() for
73+
* Modified TransitionBuffer to remove the System.out.println() for
7474
out-of-range times.
75-
* Modified the build.gradle to replace the JME version with a specific
75+
* Modified the build.gradle to replace the JME version with a specific
7676
version instead of letting it float. I think alpha4 is generally
77-
the minimum accepted 3.1 version at this point.
77+
the minimum accepted 3.1 version at this point.
7878

7979

8080
Version 1.0.1

0 commit comments

Comments
 (0)