Skip to content

Commit b0c7a71

Browse files
committed
Prepare 1.1.0 release
1 parent 1f2c567 commit b0c7a71

File tree

8 files changed

+19
-46
lines changed

8 files changed

+19
-46
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
Changes form the 1.0.0 to 1.1.0.pre1
2-
------------------------------------
3-
4-
Note: if you upgrade from 1.0.0 you should read REAME.md file to update your already created Cohorte Nodes (run configurations).
1+
Changes form the 1.0.0 to 1.1.0
2+
-------------------------------
53

64
** New Feature
75
* New "proxy" HTTP Service interface for each Node Composer [#34]
8-
* New "debug" REST API [#33]
6+
* New "debug" REST API [#33] (Java is not yet supported)
97
* New "cohorte-update" shell command [#29]
108
* New "Activity log" tab on Webadmin that tracks Cohorte's isolates activity [#21]
119
* New "Composition" tab on Webadmin that shows the application's composition specification [#21]

DEPENDENCIES.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
1.1.0.pre1
1+
1.1.0
22

33
PYTHON DEPENDENCIES
44

5-
- Cohorte-Python==1.0.1.dev
6-
- Cohorte-Herald==0.0.4.dev
5+
- Cohorte-Python==1.0.1
6+
- Cohorte-Herald==0.0.4
77
- iPOPO==0.6.2
88
- jsonrpclib-pelix==0.2.5
99
- sleekxmpp>=1.3.1
@@ -14,6 +14,6 @@ JAVA DEPENDENCIES
1414
- org.cohorte.utilities:org.cohorte.utilities:1.0.3
1515
- org.cohorte.jabsorb:org.cohorte.jabsorb:1.1.0
1616
- org.cohorte.remote:cohorte-remote-services:1.2.0
17-
- org.cohorte.herald:cohorte-herald:0.0.4-SNAPSHOT
18-
- org.cohorte.runtime:cohorte-runtime:1.0.1-SNAPSHOT
17+
- org.cohorte.herald:cohorte-herald:0.0.4
18+
- org.cohorte.runtime:cohorte-runtime:1.0.1
1919
- ipojo 1.12.1

README.rst

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,6 @@
1-
What are the changes to consider when you upgrade from 1.0.x to 1.1.x ?
2-
=======================================================================
1+
Cohorte Platform Distributions
2+
==============================
33

4-
When upgrading from Cohorte 1.0.x you should take in consideration these changes :
4+
This repository contains scripts allowing the generation of the different Cohorte distributions (runtime).
55

66

7-
Node Creation script (cohorte-create-node)
8-
------------------------------------------
9-
10-
* ``--app-name`` => ``--composition-name`` (``-a`` => ``-c``) : Application's composition name
11-
* new ``--app-id`` (``-a``) : application's ID
12-
13-
14-
Startup script (cohorte-start-node)
15-
-----------------------------------
16-
17-
From Cohorte 1.1, the following arguments where changed (and also their corresponding run.js entries):
18-
19-
* ``--web-admin`` => ``--http-port``
20-
* ``--shell-admin`` => ``--shell-port``
21-
22-
By default the node starts without the console activated. To activate it on startup, you should add this argument:
23-
24-
* ``--console``
25-
26-
Run configuration files (e.g., run.js) also updates its content :
27-
28-
* ``application-id`` => ``app-id``
29-
* ``web-admin`` => ``http-port``
30-
* ``shell-admin`` => ``shell-port``
31-

bin/cohorte-version.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ if "%COHORTE_HOME%" == "" (
77

88
echo --------------------------------------------------------------------
99
echo COHORTE
10-
echo version : 1.0.1-dev
10+
echo version : 1.0.1
1111
echo home : %COHORTE_HOME%
1212
echo --------------------------------------------------------------------

build/scripts/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Cohorte-Python==1.0.1.dev
2-
Cohorte-Herald==0.0.4.dev
1+
Cohorte-Python==1.0.1
2+
Cohorte-Herald==0.0.4
33
iPOPO==0.6.2
44
jsonrpclib-pelix==0.2.5
55
sleekxmpp>=1.3.1

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<modelVersion>4.0.0</modelVersion>
2020
<groupId>org.cohorte.platforms</groupId>
2121
<artifactId>cohorte</artifactId>
22-
<version>1.1.0-SNAPSHOT</version>
22+
<version>1.1.0</version>
2323
<packaging>pom</packaging>
2424

2525
<name>COHORTE Project ::: Platforms :: HOME </name>
@@ -53,15 +53,15 @@
5353
<dependency>
5454
<groupId>org.cohorte.runtime</groupId>
5555
<artifactId>cohorte-runtime-package</artifactId>
56-
<version>1.0.1-SNAPSHOT</version>
56+
<version>1.0.1</version>
5757
<type>pom</type>
5858
<scope>provided</scope>
5959
</dependency>
6060
<!-- cohorte-herald -->
6161
<dependency>
6262
<groupId>org.cohorte.herald</groupId>
6363
<artifactId>cohorte-herald-package</artifactId>
64-
<version>0.0.4-SNAPSHOT</version>
64+
<version>0.0.4</version>
6565
<type>pom</type>
6666
<scope>provided</scope>
6767
</dependency>

repo/admin/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
ADMIN_REST_API_PATH = "admin/api/v2"
4444

4545
# VERSION
46-
COHORTE_VERSION = "1.0.1.dev"
46+
COHORTE_VERSION = "1.0.1"
4747

4848
"""
4949
TODO: should have a local cache of all information.

repo/debug/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
DEBUG_REST_API_VERSION = "v1"
5050

5151
# VERSION
52-
COHORTE_VERSION = "1.0.1.dev"
52+
COHORTE_VERSION = "1.0.1"
5353

5454

5555
@ComponentFactory("cohorte-debug-api-factory")

0 commit comments

Comments
 (0)