Skip to content

Commit 9dd3b2e

Browse files
committed
Bump dependencies and OwnLang version
1 parent 7166478 commit 9dd3b2e

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ OwnLang - dynamic functional programming language inspired by Scala and Python.
44

55
## Installing
66

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) |
1010

1111
Also available as AUR package:
1212

build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
ext {
22
versions = [
3-
project: '2.0.0',
3+
project: '2.1.0',
44

55
json: '20240303', // org.json:json
66
snakeyaml: '1.33', // org.yaml:snakeyaml
77
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
99
jline: '2.14.6', // jline:jline
1010

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
1414

15-
junit: '5.11.0', // org.junit:junit-bom
15+
junit: '5.11.2', // org.junit:junit-bom
1616
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
1818
]
1919
}
2020

docs/docs/en/changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Next
44

5+
6+
## 2.1.0
7+
58
### Changes
69
- Add `own` package manager. Usage examples: `own`, `own init`, `own add openai`.
710
- Use relative path in include statement.

docs/docs/ru/changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Next
44

5+
6+
## 2.1.0
7+
58
### Изменения
69
- Добавлен `own` пакетный менеджер. Примеры испльзования: `own`, `own init`, `own add openai`.
710
- Относительные пути в include.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sat Aug 12 23:03:44 EEST 2023
22
distributionBase=GRADLE_USER_HOME
33
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
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

ownlang-core/src/main/java/com/annimon/ownlang/Version.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public final class Version {
44
public static final int VERSION_MAJOR = 2;
5-
public static final int VERSION_MINOR = 0;
5+
public static final int VERSION_MINOR = 1;
66
public static final int VERSION_PATCH = 0;
77

88
public static final String VERSION = VERSION_MAJOR + "."

0 commit comments

Comments
 (0)