File tree 6 files changed +18
-12
lines changed
ownlang-core/src/main/java/com/annimon/ownlang
6 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ OwnLang - dynamic functional programming language inspired by Scala and Python.
4
4
5
5
## Installing
6
6
7
- | Free | Pro | Desktop |
8
- | :--: | :-: | :-----: |
9
- | [ ![ Free] ( https://developer.android.com/images/brand/en_generic_rgb_wo_45.png )] ( https://play.google.com/store/apps/details?id=com.annimon.ownlang.free ) | [ ![ Pro] ( https://developer.android.com/images/brand/en_generic_rgb_wo_45.png )] ( https://play.google.com/store/apps/details?id=com.annimon.ownlang ) | [ v2.0 .0] ( https://github.com/aNNiMON/Own-Programming-Language-Tutorial/releases/tag/v2.0 .0 ) |
7
+ | Free | Pro | Desktop |
8
+ | :--: | :-: | :------------------------------------------------------------------------------------------: |
9
+ | [ ![ Free] ( https://developer.android.com/images/brand/en_generic_rgb_wo_45.png )] ( https://play.google.com/store/apps/details?id=com.annimon.ownlang.free ) | [ ![ Pro] ( https://developer.android.com/images/brand/en_generic_rgb_wo_45.png )] ( https://play.google.com/store/apps/details?id=com.annimon.ownlang ) | [ v2.1 .0] ( https://github.com/aNNiMON/Own-Programming-Language-Tutorial/releases/tag/v2.1 .0 ) |
10
10
11
11
Also available as AUR package:
12
12
Original file line number Diff line number Diff line change 1
1
ext {
2
2
versions = [
3
- project : ' 2.0 .0' ,
3
+ project : ' 2.1 .0' ,
4
4
5
5
json : ' 20240303' , // org.json:json
6
6
snakeyaml : ' 1.33' , // org.yaml:snakeyaml
7
7
okhttp : ' 4.12.0' , // com.squareup.okhttp3:okhttp
8
- socket : ' 2.1.0 ' , // io.socket:socket.io-client
8
+ socket : ' 2.1.1 ' , // io.socket:socket.io-client
9
9
jline : ' 2.14.6' , // jline:jline
10
10
11
- javalin : ' 6.1.3 ' , // io.javalin:javalin
12
- slf4j : ' 2.0.13 ' , // org.slf4j:slf4j-simple
13
- jackson : ' 2.17 .0' , // com.fasterxml.jackson.core:jackson-databind
11
+ javalin : ' 6.3.0 ' , // io.javalin:javalin
12
+ slf4j : ' 2.0.16 ' , // org.slf4j:slf4j-simple
13
+ jackson : ' 2.18 .0' , // com.fasterxml.jackson.core:jackson-databind
14
14
15
- junit : ' 5.11.0 ' , // org.junit:junit-bom
15
+ junit : ' 5.11.2 ' , // org.junit:junit-bom
16
16
jmh : ' 1.37' , // org.openjdk.jmh:jmh-core
17
- assertj : ' 3.25 .3' // org.assertj:assertj-core
17
+ assertj : ' 3.26 .3' // org.assertj:assertj-core
18
18
]
19
19
}
20
20
Original file line number Diff line number Diff line change 2
2
3
3
## Next
4
4
5
+
6
+ ## 2.1.0
7
+
5
8
### Changes
6
9
- Add ` own ` package manager. Usage examples: ` own ` , ` own init ` , ` own add openai ` .
7
10
- Use relative path in include statement.
Original file line number Diff line number Diff line change 2
2
3
3
## Next
4
4
5
+
6
+ ## 2.1.0
7
+
5
8
### Изменения
6
9
- Добавлен ` own ` пакетный менеджер. Примеры испльзования: ` own ` , ` own init ` , ` own add openai ` .
7
10
- Относительные пути в include.
Original file line number Diff line number Diff line change 1
1
# Sat Aug 12 23:03:44 EEST 2023
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.2-bin.zip
4
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.10. 2-bin.zip
5
5
zipStoreBase =GRADLE_USER_HOME
6
6
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 2
2
3
3
public final class Version {
4
4
public static final int VERSION_MAJOR = 2 ;
5
- public static final int VERSION_MINOR = 0 ;
5
+ public static final int VERSION_MINOR = 1 ;
6
6
public static final int VERSION_PATCH = 0 ;
7
7
8
8
public static final String VERSION = VERSION_MAJOR + "."
You can’t perform that action at this time.
0 commit comments