Prepare for 1.1.0 release.

This commit is contained in:
Karsten Loesing 2016-10-28 14:53:16 +02:00
parent 0ac703be63
commit d9e32d54cb
3 changed files with 8 additions and 6 deletions

2
.gitignore vendored
View File

@ -14,5 +14,5 @@
cobertura.ser cobertura.ser
*~ *~
build.properties build.properties
/index.json* /index/

View File

@ -1,4 +1,4 @@
# Changes in version 1.1.0 - 2016-10-XX # Changes in version 1.1.0 - 2016-10-28
* Major changes * Major changes
- Provide a facility to synchronize descriptors from other CollecTor - Provide a facility to synchronize descriptors from other CollecTor
@ -12,8 +12,8 @@
* Medium changes * Medium changes
- Replace four properties for configuring where to write - Replace four properties for configuring where to write
descriptors by a single 'OutPath' property. descriptors by a single 'OutPath' property.
- Introduced *Sources and *Origins properties to simplify - Introduce *Sources and *Origins properties to simplify data
data source definition. source definition.
- Remove six properties for specifying what relay descriptors to - Remove six properties for specifying what relay descriptors to
download and replace them with hard-coded 'true' values. download and replace them with hard-coded 'true' values.
@ -22,6 +22,8 @@
- Add modular file persistence to write descriptors to the out/ and - Add modular file persistence to write descriptors to the out/ and
recent/ subdirectories.. recent/ subdirectories..
- Exclude temporary files from index.json* files. - Exclude temporary files from index.json* files.
- Expand the operator's guide in INSTALL.md.
# Changes in version 1.0.2 - 2016-10-07 # Changes in version 1.0.2 - 2016-10-07

View File

@ -1,12 +1,12 @@
<project default="compile" name="CollecTor" basedir="."> <project default="compile" name="CollecTor" basedir=".">
<property name="release.version" value="1.1.0-dev" /> <property name="release.version" value="1.1.0" />
<property name="name" value="CollecTor"/> <property name="name" value="CollecTor"/>
<property name="descriptorversion" value="1.5.0" /> <property name="descriptorversion" value="1.5.0" />
<property name="source-and-target-java-version" value="1.7" /> <property name="source-and-target-java-version" value="1.7" />
<property name="sources" value="src/main/java"/> <property name="sources" value="src/main/java"/>
<property name="resources" value="src/main/resources/"/> <property name="resources" value="src/main/resources/"/>
<property name="webappsources" value="src/main/webapp"/> <property name="webappsources" value="src/main/webapp"/>
<property name="generated" value="generated/"/> <property name="generated" value="generated"/>
<property name="dist" value="${generated}/dist"/> <property name="dist" value="${generated}/dist"/>
<property name="testresult" value="${generated}/test-results"/> <property name="testresult" value="${generated}/test-results"/>
<property name="testsources" value="src/test/java"/> <property name="testsources" value="src/test/java"/>