Skip to content

Commit 7098380

Browse files
committed
Update version to 1.2.
1 parent 8ace47c commit 7098380

File tree

2 files changed

+12
-49
lines changed

2 files changed

+12
-49
lines changed

README.md

+11-48
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ There is also a "Save" button that fakes a save operation. It is enabled only wh
110110

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

113-
[Download](https://github.com/TomasMikula/UndoFX/releases/download/v1.1.1/undofx-demos-fat-1.1.1.jar) the pre-built "fat" JAR file and run
113+
[Download](https://github.com/TomasMikula/UndoFX/releases/download/v1.2/undofx-demos-fat-1.2.jar) the pre-built "fat" JAR file and run
114114

115-
java -cp undofx-demos-fat-1.1.1.jar org.fxmisc.undo.demo.CircleProperties
115+
java -cp undofx-demos-fat-1.2.jar org.fxmisc.undo.demo.CircleProperties
116116

117117
### Run from the source repo
118118

@@ -138,66 +138,29 @@ Dependencies
138138
Use UndoFX in your project
139139
--------------------------
140140

141-
### Stable release
142-
143-
Current stable release is 1.1.1.
144-
145-
#### Maven coordinates
141+
### Maven coordinates
146142

147143
| Group ID | Artifact ID | Version |
148144
| :-------------: | :---------: | :-----: |
149-
| org.fxmisc.undo | undofx | 1.1.1 |
145+
| org.fxmisc.undo | undofx | 1.2 |
150146

151-
#### Gradle example
147+
### Gradle example
152148

153149
```groovy
154150
dependencies {
155-
compile group: 'org.fxmisc.undo', name: 'undofx', version: '1.1.1'
151+
compile group: 'org.fxmisc.undo', name: 'undofx', version: '1.2'
156152
}
157153
```
158154

159-
#### Sbt example
155+
### Sbt example
160156

161157
```scala
162-
libraryDependencies += "org.fxmisc.undo" % "undofx" % "1.1.1"
158+
libraryDependencies += "org.fxmisc.undo" % "undofx" % "1.2"
163159
```
164160

165-
#### Manual download
166-
167-
Download [the JAR file](https://github.com/TomasMikula/UndoFX/releases/download/v1.1.1/undofx-1.1.1.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/UndoFX/releases/download/v1.1.1/undofx-fat-1.1.1.jar) and place it on your classpath.
168-
169-
170-
### Snapshot releases
171-
172-
Snapshot releases are deployed to Sonatype snapshot repository.
161+
### Manual download
173162

174-
#### Maven coordinates
175-
176-
| Group ID | Artifact ID | Version |
177-
| :-------------: | :---------: | :----------: |
178-
| org.fxmisc.undo | undofx | 1.2-SNAPSHOT |
179-
180-
#### Gradle example
181-
182-
```groovy
183-
repositories {
184-
maven {
185-
url 'https://oss.sonatype.org/content/repositories/snapshots/'
186-
}
187-
}
188-
189-
dependencies {
190-
compile group: 'org.fxmisc.undo', name: 'undofx', version: '1.2-SNAPSHOT'
191-
}
192-
```
193-
194-
#### Sbt example
195-
196-
```scala
197-
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
198-
199-
libraryDependencies += "org.fxmisc.undo" % "undofx" % "1.2-SNAPSHOT"
200-
```
163+
Download [the JAR file](https://github.com/TomasMikula/UndoFX/releases/download/v1.2/undofx-1.2.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/UndoFX/releases/download/v1.2/undofx-fat-1.2.jar) and place it on your classpath.
201164

202165

203166
License
@@ -209,4 +172,4 @@ License
209172
Links
210173
-----
211174

212-
[Javadoc](http://www.fxmisc.org/undo/javadoc/org/fxmisc/undo/package-summary.html)
175+
[API Documentation (Javadoc)](http://www.fxmisc.org/undo/javadoc/org/fxmisc/undo/package-summary.html)

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
subprojects {
2-
version = '1.2-SNAPSHOT'
2+
version = '1.2'
33

44
apply plugin: 'java'
55
apply plugin: 'eclipse'

0 commit comments

Comments
 (0)