Skip to content

Commit

Permalink
Set semver-min and -max, add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
joewiz committed Apr 24, 2019
1 parent 06ed45c commit 8b6d115
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>org.exist-db.apps</groupId>
<artifactId>monex</artifactId>
<version>0.9.18-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>

<name>Monex</name>
<description>An application for monitoring, profiling and inspecting a running eXist-db instance.</description>
Expand Down Expand Up @@ -63,7 +63,9 @@
<project.build.source>1.8</project.build.source>
<project.build.target>1.8</project.build.target>

<exist.version>5.0.0-SNAPSHOT</exist.version>
<exist.version>4.6.1</exist.version>
<min.version>3.7.0-SNAPSHOT</min.version>
<max.version>4.99.0</max.version>

<!-- used in the EXPath Package Descriptor -->
<package-name>http://exist-db.org/apps/monex</package-name>
Expand Down
12 changes: 11 additions & 1 deletion xar-assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<tag>application</tag>
<category id="apps">Applications</category>

<dependency processor="http://exist-db.org" semver-min="${exist.version}" />
<dependency processor="http://exist-db.org" semver-min="${min.version}" semver-max="${max.version}" />
<dependency package="http://exist-db.org/apps/shared"/>

<!-- Collection inside /db/apps where xar-resources will be copied to -->
Expand Down Expand Up @@ -147,6 +147,16 @@
<li>Repair for eXist 5.0.0 release</li>
</ul>
</change>
<change version="1.0.0">
<ul xmlns="http://www.w3.org/1999/xhtml">
<li>Version note: Due to changes in JMX output in eXist 5.x, Monex is now split into a 1.x branch for users of eXist 4.x and the develop branch will carry Monex 2.0 releases for users of eXist 5+</li>
<li>Improved: Monex is now built with maven</li>
<li>Improved: Removed dependency on Jetty. Monex now uses the standard Java WebSocket API.</li>
<li>Improved: Declared front end dependencies via npm.</li>
<li>Removed: HipChat module</li>
<li>Fixed: Javascript errors when loading various pages</li>
</ul>
</change>
</changelog>

</package>

0 comments on commit 8b6d115

Please sign in to comment.