Skip to content

Commit f230aad

Browse files
committed
Version 0.7 & Maven Central publishing
1 parent d97e0eb commit f230aad

File tree

7 files changed

+36
-17
lines changed

7 files changed

+36
-17
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change log for kotlinx.atomicfu
22

3+
## Version 0.7
4+
5+
* Fixed lost ACC_STATIC on <clinit> methods
6+
* Publish to Maven Central
7+
38
## Version 0.6
49

510
* toString defined for debugging.

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -86,21 +86,10 @@ Declare AtomicFU version:
8686

8787
```xml
8888
<properties>
89-
<atomicfu.version>0.6</atomicfu.version>
89+
<atomicfu.version>0.7</atomicfu.version>
9090
</properties>
9191
```
9292

93-
Add Bintray JCenter repository:
94-
95-
```xml
96-
<repositories>
97-
<repository>
98-
<id>central</id>
99-
<url>http://jcenter.bintray.com</url>
100-
</repository>
101-
</repositories>
102-
```
103-
10493
Declare _provided_ dependency on the AtomicFU library
10594
(the users of the resulting artifact will not have a dependency on AtomicFU library):
10695

atomicfu-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.jetbrains.kotlinx</groupId>
2323
<artifactId>atomicfu-parent</artifactId>
24-
<version>0.6-SNAPSHOT</version>
24+
<version>0.7-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>atomicfu-maven-plugin</artifactId>

atomicfu-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.jetbrains.kotlinx</groupId>
2323
<artifactId>atomicfu-parent</artifactId>
24-
<version>0.6-SNAPSHOT</version>
24+
<version>0.7-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>atomicfu-test</artifactId>

atomicfu-transformer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.jetbrains.kotlinx</groupId>
2323
<artifactId>atomicfu-parent</artifactId>
24-
<version>0.6-SNAPSHOT</version>
24+
<version>0.7-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>atomicfu-transformer</artifactId>

atomicfu/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.jetbrains.kotlinx</groupId>
2323
<artifactId>atomicfu-parent</artifactId>
24-
<version>0.6-SNAPSHOT</version>
24+
<version>0.7-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>atomicfu</artifactId>

pom.xml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,21 @@
2020

2121
<groupId>org.jetbrains.kotlinx</groupId>
2222
<artifactId>atomicfu-parent</artifactId>
23-
<version>0.6-SNAPSHOT</version>
23+
<version>0.7-SNAPSHOT</version>
2424
<packaging>pom</packaging>
2525

2626
<name>AtomicFU</name>
27+
<description>The idiomatic way to use atomic operations in Kotlin</description>
28+
<url>https://github.com/Kotlin/kotlinx.atomicfu/</url>
29+
30+
<licenses>
31+
<license>
32+
<name>The Apache Software License, Version 2.0</name>
33+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34+
<distribution>repo</distribution>
35+
<comments>A business-friendly OSS license</comments>
36+
</license>
37+
</licenses>
2738

2839
<modules>
2940
<module>atomicfu-maven-plugin</module>
@@ -120,5 +131,19 @@
120131
</pluginManagement>
121132
</build>
122133

134+
<developers>
135+
<developer>
136+
<id>JetBrains</id>
137+
<name>JetBrains Team</name>
138+
<organization>JetBrains</organization>
139+
<organizationUrl>http://www.jetbrains.com</organizationUrl>
140+
</developer>
141+
</developers>
142+
143+
<scm>
144+
<url>https://github.com/Kotlin/kotlinx.atomicfu</url>
145+
<connection>scm:git:https://github.com/Kotlin/kotlinx.atomicfu.git</connection>
146+
<developerConnection>scm:git:https://github.com/Kotlin/kotlinx.atomicfu.git</developerConnection>
147+
</scm>
123148

124149
</project>

0 commit comments

Comments
 (0)