1
0
Fork 0
mirror of https://github.com/crawler-commons/crawler-commons synced 2024-05-08 15:36:04 +02:00

Released 0.7

This commit is contained in:
Julien Nioche 2016-11-24 10:07:27 +00:00
parent 2df1374eb4
commit 1a6c1b0dce
2 changed files with 18 additions and 1 deletions

View File

@ -1,6 +1,8 @@
Crawler-Commons Change Log
Current Development 0.7-SNAPSHOT
Current Development 0.8-SNAPSHOT
Release 0.7 (2016-11-24)
- Upgrade to JDK 1.8 (lewismc) #126
- [Sitemaps] SitemapParser methods now protected (michaellavelle) #124
- [Sitemaps] Faster parsing of dates (jnioche) #117

View File

@ -9,6 +9,7 @@ crawler-commons is a set of reusable Java components that implement functionalit
## Javadocs
* [0.7](http://crawler-commons.github.io/crawler-commons/0.7/)
* [0.6](http://crawler-commons.github.io/crawler-commons/0.6/apidocs/)
* [0.5](http://crawler-commons.googlecode.com/svn/wiki/javadoc/0.5/index.html)
@ -22,6 +23,20 @@ If you find an issue, please file a report [here](https://github.com/crawler-com
# Crawler-Commons News
## 24th November 2016 - crawler-commons 0.7 released
We are glad to announce the 0.7 release of Crawler-Commons. See the [CHANGES.txt](https://github.com/crawler-commons/crawler-commons/blob/crawler-commons-0.7/CHANGES.txt) file included with the release for a full list of details.
The main changes are that Crawler-Commons now requires JAVA 8 and that the package crawlercommons.url has been replaced with crawlercommons.domains. If your project uses CC then you might want to run the following command on it
```
find . -type f -print0 | xargs -0 sed -i 's/import crawlercommons\.url\./import crawlercommons\.domains\./'
```
Please note also that this is the last release containing the HTTP fetcher support, which is deprecated and will be removed from the next version.
The version 0.7 contains numerous improvements and bugfixes and all users are invited to upgrade to this version.
## 11th June 2015 - crawler-commons 0.6 is released
We are glad to announce the 0.6 release of Crawler Commons. See the [CHANGES.txt](https://github.com/crawler-commons/crawler-commons/blob/crawler-commons-0.6/CHANGES.txt) file included with the release for a full list of details.