Skip to content

Commit 3e49630

Browse files
committed
change to v 2.5
1 parent d361d16 commit 3e49630

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply plugin: 'maven'
1616
apply plugin: 'maven-publish'
1717
apply plugin: 'signing'
1818

19-
version '2.5-SNAPSHOT'
19+
version '2.5'
2020
group 'org.jason-lang'
2121

2222
sourceCompatibility = 1.8
@@ -39,8 +39,9 @@ repositories {
3939

4040

4141
dependencies {
42-
compile group: 'net.sf.ingenias', name: 'jade', version: '4.3'
42+
compile group: 'net.sf.ingenias', name: 'jade', version: '4.3'
4343
//compile group: 'com.tilab.jade', name: 'jade', version: '4.4.0'
44+
4445
compile group: 'org.jacamo', name: 'cartago', version: '2.3'
4546
compile group: 'org.jacamo', name: 'jaca', version: '2.3'
4647

doc/release-notes.adoc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
ifdef::env-github[:outfilesuffix: .adoc]
55

6-
== version 2.5
6+
== version 2.5 (2020-06-25)
77

88
- cascading failures of failures (see FAQ)
99
- new internal actions to manipulate a Java Set. In Jason, it is represented by a variable. Example:
@@ -51,10 +51,8 @@ for ( .map.key(M,K) & .map.get(M,K,V) ) {
5151
}.
5252
----
5353

54-
5554
- new internal action to replace strings (see internal action .replace).
5655

57-
5856
== version 2.4 (2019-05-24)
5957

6058
(a built package is available at https://sourceforge.net/projects/jason/files/jason/version%202.4/[here])

readme.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ NOTE: In Jason 2.0 the way to run the Jason IDE (based on jEdit) has changed. Ra
3535
----
3636
git clone https://github.com/jason-lang/jason.git
3737
cd jason
38-
gradlew config // <1> <2>
38+
./gradlew config // <1> <2>
3939
----
4040
<1> the config task builds the jason jar, configure jason properties file, and place all jars in `build/libs`.
4141
<2> this task also prints out the commands to set up the `JASON_HOME` and `PATH` variables.
@@ -49,10 +49,10 @@ The Jason IDE based on jEdit can be launched by the `jason-ide` script or `java
4949
Other useful gradle tasks:
5050

5151
-----
52-
gradle jar // <1>
53-
gradle doc // <2>
54-
gradle clean // <3>
55-
gradle release // <4>
52+
./gradlew jar // <1>
53+
./gradlew doc // <2>
54+
./gradlew clean // <3>
55+
./gradlew release // <4>
5656
-----
5757
<1> generates a new jason jar.
5858
<2> generates the javadoc and transforms asciidoc files into html (Docker must be running for the latter).

0 commit comments

Comments
 (0)