File tree Expand file tree Collapse file tree 7 files changed +36
-17
lines changed Expand file tree Collapse file tree 7 files changed +36
-17
lines changed Original file line number Diff line number Diff line change 1
1
# Change log for kotlinx.atomicfu
2
2
3
+ ## Version 0.7
4
+
5
+ * Fixed lost ACC_STATIC on <clinit > methods
6
+ * Publish to Maven Central
7
+
3
8
## Version 0.6
4
9
5
10
* toString defined for debugging.
Original file line number Diff line number Diff line change @@ -86,21 +86,10 @@ Declare AtomicFU version:
86
86
87
87
``` xml
88
88
<properties >
89
- <atomicfu .version>0.6 </atomicfu .version>
89
+ <atomicfu .version>0.7 </atomicfu .version>
90
90
</properties >
91
91
```
92
92
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
-
104
93
Declare _ provided_ dependency on the AtomicFU library
105
94
(the users of the resulting artifact will not have a dependency on AtomicFU library):
106
95
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >org.jetbrains.kotlinx</groupId >
23
23
<artifactId >atomicfu-parent</artifactId >
24
- <version >0.6 -SNAPSHOT</version >
24
+ <version >0.7 -SNAPSHOT</version >
25
25
</parent >
26
26
27
27
<artifactId >atomicfu-maven-plugin</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >org.jetbrains.kotlinx</groupId >
23
23
<artifactId >atomicfu-parent</artifactId >
24
- <version >0.6 -SNAPSHOT</version >
24
+ <version >0.7 -SNAPSHOT</version >
25
25
</parent >
26
26
27
27
<artifactId >atomicfu-test</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >org.jetbrains.kotlinx</groupId >
23
23
<artifactId >atomicfu-parent</artifactId >
24
- <version >0.6 -SNAPSHOT</version >
24
+ <version >0.7 -SNAPSHOT</version >
25
25
</parent >
26
26
27
27
<artifactId >atomicfu-transformer</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >org.jetbrains.kotlinx</groupId >
23
23
<artifactId >atomicfu-parent</artifactId >
24
- <version >0.6 -SNAPSHOT</version >
24
+ <version >0.7 -SNAPSHOT</version >
25
25
</parent >
26
26
27
27
<artifactId >atomicfu</artifactId >
Original file line number Diff line number Diff line change 20
20
21
21
<groupId >org.jetbrains.kotlinx</groupId >
22
22
<artifactId >atomicfu-parent</artifactId >
23
- <version >0.6 -SNAPSHOT</version >
23
+ <version >0.7 -SNAPSHOT</version >
24
24
<packaging >pom</packaging >
25
25
26
26
<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 >
27
38
28
39
<modules >
29
40
<module >atomicfu-maven-plugin</module >
120
131
</pluginManagement >
121
132
</build >
122
133
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 >
123
148
124
149
</project >
You can’t perform that action at this time.
0 commit comments