Skip to content

Commit e808ba9

Browse files
committed
update readme to refer to the latest uploaded version
1 parent ce3e5b0 commit e808ba9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ Update `projectVersion` property in gradle.properties file before doing the chan
77
* increase the patch component of the version if you're changing a javadoc
88
* increase the minor component of the version if you're adding a new element into an existing annotation or add
99
a new annotation highly related to an existing one
10-
* increase the major component of the version if you're adding a completely new annotation.
10+
* increase the major component of the version if you're adding a completely new annotation.
11+
12+
Also update version number in the examples in README.md file.
1113

1214
### Backward compatibility
1315
All the changes should be backward compatible i.e. you can add new annotations and new elements into existing annotation.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The annotations are published on [Maven Central](http://repo1.maven.org/maven2/o
77
using gradle write the following in `build.gradle` file:
88
```
99
dependencies {
10-
compile 'org.jetbrains:annotations:16.0.0'
10+
compile 'org.jetbrains:annotations:16.0.1'
1111
}
1212
1313
```
@@ -16,7 +16,7 @@ To add a dependency using Maven write the following in `pom.xml`:
1616
<dependency>
1717
<groupId>org.jetbrains</groupId>
1818
<artifactId>annotations</artifactId>
19-
<version>16.0.0</version>
19+
<version>16.0.1</version>
2020
</dependency>
2121
```
2222

0 commit comments

Comments
 (0)