mirror of
https://github.com/torproject/collector.git
synced 2024-11-23 09:29:46 +00:00
Prepare for 1.1.0 release.
This commit is contained in:
parent
0ac703be63
commit
d9e32d54cb
2
.gitignore
vendored
2
.gitignore
vendored
@ -14,5 +14,5 @@
|
|||||||
cobertura.ser
|
cobertura.ser
|
||||||
*~
|
*~
|
||||||
build.properties
|
build.properties
|
||||||
/index.json*
|
/index/
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user