Skip to content

Commit 7bad71e

Browse files
committed
Update release to 1.0.0 and snapshot to 1.0.1.
1 parent 3a36ebb commit 7bad71e

File tree

4 files changed

+42
-16
lines changed

4 files changed

+42
-16
lines changed

README.md

+39-13
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The _stream of change events_ is a [ReactFX](https://github.com/TomasMikula/Reac
8686

8787
The _apply_, _unapply_ and _merge_ functions are all instances of [functional interfaces](http://download.java.net/jdk8/docs/api/java/util/function/package-summary.html) from JDK8, and thus can be instantiated using lambda expressions.
8888

89-
Once you have all these, you can use one of the factory methods from [UndoManagerFactory](https://googledrive.com/host/0B4a5AnNnZhkbVDRiZmxiMW1OYk0/javadoc/org/fxmisc/undo/UndoManagerFactory.html) to get an instance.
89+
Once you have all these, you can use one of the factory methods from [UndoManagerFactory](http://www.fxmisc.org/undo/javadoc/org/fxmisc/undo/UndoManagerFactory.html) to get an instance.
9090

9191
```java
9292
EventStream<MyChange> changes = ...;
@@ -111,9 +111,9 @@ There is also a "Save" button that fakes a save operation. It is enabled only wh
111111

112112
### Run from the pre-built JAR
113113

114-
[Download](https://googledrive.com/host/0B4a5AnNnZhkbVDRiZmxiMW1OYk0/downloads/) the pre-built "fat" JAR file and run
114+
[Download](https://github.com/TomasMikula/UndoFX/releases/download/v1.0.0/undofx-demos-fat-1.0.0.jar) the pre-built "fat" JAR file and run
115115

116-
java -cp undofx-demos-fat-1.0.0-SNAPSHOT.jar org.fxmisc.undo.demo.CircleProperties
116+
java -cp undofx-demos-fat-1.0.0.jar org.fxmisc.undo.demo.CircleProperties
117117

118118
### Run from the source repo
119119

@@ -139,13 +139,44 @@ Dependencies
139139
Use UndoFX in your project
140140
--------------------------
141141

142-
### Method 1: as a managed dependency
142+
### Stable release
143143

144-
Snapshot releases are deployed to Sonatype snapshot repository with these Maven coordinates
144+
Current stable release is 1.0.0.
145+
146+
#### Maven coordinates
147+
148+
| Group ID | Artifact ID | Version |
149+
| :-------------: | :---------: | :-----: |
150+
| org.fxmisc.undo | undofx | 1.0.0 |
151+
152+
#### Gradle example
153+
154+
```groovy
155+
dependencies {
156+
compile group: 'org.fxmisc.undo', name: 'undofx', version: '1.0.0'
157+
}
158+
```
159+
160+
#### Sbt example
161+
162+
```scala
163+
libraryDependencies += "org.fxmisc.undo" % "undofx" % "1.0.0"
164+
```
165+
166+
#### Manual download
167+
168+
Download [the JAR file](https://github.com/TomasMikula/UndoFX/releases/download/v1.0.0/undofx-1.0.0.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/UndoFX/releases/download/v1.0.0/undofx-fat-1.0.0.jar) and place it on your classpath.
169+
170+
171+
### Snapshot releases
172+
173+
Snapshot releases are deployed to Sonatype snapshot repository.
174+
175+
#### Maven coordinates
145176

146177
| Group ID | Artifact ID | Version |
147178
| :-------------: | :---------: | :------------: |
148-
| org.fxmisc.undo | undofx | 1.0.0-SNAPSHOT |
179+
| org.fxmisc.undo | undofx | 1.0.1-SNAPSHOT |
149180

150181
#### Gradle example
151182

@@ -157,7 +188,7 @@ repositories {
157188
}
158189
159190
dependencies {
160-
compile group: 'org.fxmisc.undo', name: 'undofx', version: '1.0.0-SNAPSHOT'
191+
compile group: 'org.fxmisc.undo', name: 'undofx', version: '1.0.1-SNAPSHOT'
161192
}
162193
```
163194

@@ -166,15 +197,10 @@ dependencies {
166197
```scala
167198
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
168199

169-
libraryDependencies += "org.fxmisc.undo" % "undofx" % "1.0.0-SNAPSHOT"
200+
libraryDependencies += "org.fxmisc.undo" % "undofx" % "1.0.1-SNAPSHOT"
170201
```
171202

172203

173-
### Method 2: as an unmanaged dependency
174-
175-
Download the latest [JAR](https://oss.sonatype.org/content/repositories/snapshots/org/fxmisc/undo/undofx/1.0.0-SNAPSHOT/) or [fat JAR (including dependencies)](https://googledrive.com/host/0B4a5AnNnZhkbVDRiZmxiMW1OYk0/downloads/) and place it on your classpath.
176-
177-
178204
License
179205
-------
180206

build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
subprojects {
2+
version = '1.0.1-SNAPSHOT'
3+
24
apply plugin: 'java'
35
apply plugin: 'eclipse'
46

gradle.properties.example

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version = 1.0.0-SNAPSHOT
2-
31
sonatypeUsername = <username>
42
sonatypePassword = <password>
53

undofx/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44
group = 'org.fxmisc.undo'
55

66
dependencies {
7-
compile group: 'org.reactfx', name: 'reactfx', version: '1.0.0+'
7+
compile group: 'org.reactfx', name: 'reactfx', version: '1.0+'
88
testCompile group: 'junit', name: 'junit', version: '4.+'
99
}
1010

0 commit comments

Comments
 (0)