File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
99a 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
1315All the changes should be backward compatible i.e. you can add new annotations and new elements into existing annotation.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ The annotations are published on [Maven Central](http://repo1.maven.org/maven2/o
77using gradle write the following in ` build.gradle ` file:
88```
99dependencies {
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
You can’t perform that action at this time.
0 commit comments