Skip to content

Commit

Permalink
Preparing 0.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
debbabi committed Jul 10, 2015
1 parent 9c6e638 commit 7cb7730
Show file tree
Hide file tree
Showing 47 changed files with 133 additions and 91 deletions.
21 changes: 9 additions & 12 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
Changes form the 0.0.3 to 0.0.4.dev
-----------------------------------
Changes form the 0.0.3 to 0.0.4
-------------------------------

* New Feature
** New Features
* Herald Remote Shell: open a shell session on another peer (experimental)

* Herald Remote Shell: open a shell session on another peer

* Improvements

* New Message format encapsulating headers and metadata
* Herald unlocks send() calls when the target peer is unregistered.
** Improvements
* New Message format encapsulating headers and metadata
* Herald unlocks send() calls when the target peer is unregistered.
It also calls the errback of post() calls.

* Bug Fix

* Fixing synchronisation problem: XMPP transport blocked on
** Bug Fix
* Fixing synchronisation problem: XMPP transport blocked on
``_on_disconnected`` (isandlaTech/cohorte-herald/issues/14).
2 changes: 1 addition & 1 deletion java/cohorte-herald-package/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.cohorte.herald</groupId>
<artifactId>cohorte-herald</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>cohorte-herald-package</artifactId>
Expand Down
45 changes: 45 additions & 0 deletions java/compile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
cd org.cohorte.herald.api
mvn clean install -Dmaven.test.skip=true
P1=$?
cp target/org.cohorte.herald.api-*.jar $COHORTE_HOME/repo

cd ..
cd org.cohorte.herald.core
mvn clean install -Dmaven.test.skip=true
P2=$?
cp target/org.cohorte.herald.core-*.jar $COHORTE_HOME/repo

cd ..
cd org.cohorte.herald.http
mvn clean install -Dmaven.test.skip=true
P3=$?
cp target/org.cohorte.herald.http-*.jar $COHORTE_HOME/repo

cd ..
cd org.cohorte.herald.rpc
mvn clean install -Dmaven.test.skip=true
P4=$?
cp target/org.cohorte.herald.rpc-*.jar $COHORTE_HOME/repo

cd ..
cd org.cohorte.herald.shell
mvn clean install -Dmaven.test.skip=true
P5=$?
cp target/org.cohorte.herald.shell-*.jar $COHORTE_HOME/repo

cd ..
cd org.cohorte.herald.xmpp
mvn clean install -Dmaven.test.skip=true
P6=$?
cp target/org.cohorte.herald.xmpp-*.jar $COHORTE_HOME/repo
cd ..

echo ""
echo "***********************"
echo api $P1
echo core $P2
echo http $P3
echo rpc $P4
echo shell $P5
echo xmpp $P6
echo "***********************"
2 changes: 1 addition & 1 deletion java/org.cohorte.herald.api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.cohorte.herald</groupId>
<artifactId>cohorte-herald</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.cohorte.herald.api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion java/org.cohorte.herald.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.cohorte.herald</groupId>
<artifactId>cohorte-herald</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.cohorte.herald.core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion java/org.cohorte.herald.http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.cohorte.herald</groupId>
<artifactId>cohorte-herald</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.cohorte.herald.http</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion java/org.cohorte.herald.rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.cohorte.herald</groupId>
<artifactId>cohorte-herald</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>org.cohorte.herald.rpc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion java/org.cohorte.herald.shell/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.cohorte.herald</groupId>
<artifactId>cohorte-herald</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.4</version>
</parent>
<artifactId>org.cohorte.herald.shell</artifactId>
<packaging>bundle</packaging>
Expand Down
2 changes: 1 addition & 1 deletion java/org.cohorte.herald.xmpp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.cohorte.herald</groupId>
<artifactId>cohorte-herald</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.4</version>
</parent>
<artifactId>org.cohorte.herald.xmpp</artifactId>
<name>Cohorte Herald :: XMPP Transport</name>
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.cohorte.herald</groupId>
<artifactId>cohorte-herald</artifactId>
<version>0.0.4-SNAPSHOT</version>
<version>0.0.4</version>
<packaging>pom</packaging>

<name>Cohorte Herald :: Root project</name>
Expand Down
2 changes: 1 addition & 1 deletion python/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand Down
6 changes: 3 additions & 3 deletions python/herald/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
Herald core package
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:copyright: Copyright 2014-2015, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Copyright 2014 isandlaTech
Copyright 2014-2015 isandlaTech
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions python/herald/beans.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -29,7 +29,7 @@
# Module version
import pelix.ipopo.decorators

__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/probe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/probe/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/probe/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/probe/store_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/probe/store_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
2 changes: 1 addition & 1 deletion python/herald/remote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand Down
4 changes: 2 additions & 2 deletions python/herald/remote/discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -27,7 +27,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/remote/herald_jabsorbrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -28,7 +28,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
4 changes: 2 additions & 2 deletions python/herald/remote/herald_jsonrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:author: Thomas Calmant
:copyright: Copyright 2014, isandlaTech
:license: Apache License 2.0
:version: 0.0.3
:version: 0.0.4
:status: Alpha
..
Expand All @@ -28,7 +28,7 @@
"""

# Module version
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 4)
__version__ = ".".join(str(x) for x in __version_info__)

# Documentation strings format
Expand Down
Loading

0 comments on commit 7cb7730

Please sign in to comment.