From 7a510fbe60efbc436a358b02e754c0fabeb736e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Schr=C3=B6der?= Date: Thu, 4 Aug 2016 10:03:50 +0200 Subject: [PATCH 1/7] what has and will change for v1.7 --- WHATS_NEW.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index b3035869..653a25d5 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -1,6 +1,14 @@ WHATS NEW ========== ------------------------------ +?? new release **v1.7** +- move to graphhopper.com +- change license from GPLv3 to Apache v2 to make it even more attractive to other developers +- pushed binaries to maven central, i.e. made it better accessible and we get rid of our own repo +- outsourced various io operations, e.g. reading writing problem/algorithm to a new module called jsprit-io. this way the core is even more lightweight and less dependent on other libraries +- made it much more memory efficient for large problems +- add priority feature + 2016-02-02 new release **v1.6.2** Consideration of Waiting Times: From e55ba0ed661e82276c42dfe429969c711d2f4ed7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Schr=C3=B6der?= Date: Thu, 4 Aug 2016 10:11:09 +0200 Subject: [PATCH 2/7] what has and will change for v1.7 --- WHATS_NEW.md | 1 + 1 file changed, 1 insertion(+) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index 653a25d5..4fc855ef 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -6,6 +6,7 @@ WHATS NEW - change license from GPLv3 to Apache v2 to make it even more attractive to other developers - pushed binaries to maven central, i.e. made it better accessible and we get rid of our own repo - outsourced various io operations, e.g. reading writing problem/algorithm to a new module called jsprit-io. this way the core is even more lightweight and less dependent on other libraries +- switched from log4j to the [logger facade slf4j](http://www.slf4j.org/) to allow developers to plugin the logger of their choice - made it much more memory efficient for large problems - add priority feature From 1c9a24ad5b3b8da3d06bff9c20da6c1346b9b190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Schr=C3=B6der?= Date: Thu, 4 Aug 2016 10:15:10 +0200 Subject: [PATCH 3/7] what has and will change for v1.7 --- WHATS_NEW.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index 4fc855ef..ee99c3e7 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -7,8 +7,9 @@ WHATS NEW - pushed binaries to maven central, i.e. made it better accessible and we get rid of our own repo - outsourced various io operations, e.g. reading writing problem/algorithm to a new module called jsprit-io. this way the core is even more lightweight and less dependent on other libraries - switched from log4j to the [logger facade slf4j](http://www.slf4j.org/) to allow developers to plugin the logger of their choice -- made it much more memory efficient for large problems -- add priority feature +- made it [much more memory efficient](https://github.com/graphhopper/jsprit/issues/230) for large problems +- add [priority feature](https://github.com/graphhopper/jsprit/issues/242) +- refine Exception to get a clear separation of IllegalArgument and [IllegalState](https://stackoverflow.com/questions/12698275/whats-the-intended-use-of-illegalstateexception) 2016-02-02 new release **v1.6.2** From e5249a711363cc0d708606ee9447712bff5697ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Schr=C3=B6der?= Date: Thu, 4 Aug 2016 10:16:18 +0200 Subject: [PATCH 4/7] what has and will change for v1.7 --- WHATS_NEW.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index ee99c3e7..ba2748ac 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -9,7 +9,7 @@ WHATS NEW - switched from log4j to the [logger facade slf4j](http://www.slf4j.org/) to allow developers to plugin the logger of their choice - made it [much more memory efficient](https://github.com/graphhopper/jsprit/issues/230) for large problems - add [priority feature](https://github.com/graphhopper/jsprit/issues/242) -- refine Exception to get a clear separation of IllegalArgument and [IllegalState](https://stackoverflow.com/questions/12698275/whats-the-intended-use-of-illegalstateexception) +- [refine exceptions](https://github.com/graphhopper/jsprit/issues/251) to get a clear separation of IllegalArgument and [IllegalState](https://stackoverflow.com/questions/12698275/whats-the-intended-use-of-illegalstateexception) 2016-02-02 new release **v1.6.2** From 230481aa5e5cb4d0fc5f366a5561edad793002f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Schr=C3=B6der?= Date: Thu, 4 Aug 2016 10:16:55 +0200 Subject: [PATCH 5/7] what has and will change for v1.7 --- WHATS_NEW.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index ba2748ac..40791622 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -5,7 +5,7 @@ WHATS NEW - move to graphhopper.com - change license from GPLv3 to Apache v2 to make it even more attractive to other developers - pushed binaries to maven central, i.e. made it better accessible and we get rid of our own repo -- outsourced various io operations, e.g. reading writing problem/algorithm to a new module called jsprit-io. this way the core is even more lightweight and less dependent on other libraries +- outsourced various io operations, e.g. reading writing problem/algorithm to a new module called [jsprit-io](https://github.com/graphhopper/jsprit/tree/master/jsprit-io). this way the core is even more lightweight and less dependent on other libraries - switched from log4j to the [logger facade slf4j](http://www.slf4j.org/) to allow developers to plugin the logger of their choice - made it [much more memory efficient](https://github.com/graphhopper/jsprit/issues/230) for large problems - add [priority feature](https://github.com/graphhopper/jsprit/issues/242) From a8f3d61c4778dcd3f94d777abcbd1c60f5762cea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Schr=C3=B6der?= Date: Thu, 4 Aug 2016 10:18:32 +0200 Subject: [PATCH 6/7] what has and will change for v1.7 --- WHATS_NEW.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index 40791622..ce77d3d6 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -2,8 +2,8 @@ WHATS NEW ========== ------------------------------ ?? new release **v1.7** -- move to graphhopper.com -- change license from GPLv3 to Apache v2 to make it even more attractive to other developers +- move packages to [graphhopper.com](https://graphhopper.com/) +- change license from GPLv3 to [Apache v2](https://github.com/graphhopper/jsprit/blob/master/LICENSE.md) to make it even more attractive to other developers - pushed binaries to maven central, i.e. made it better accessible and we get rid of our own repo - outsourced various io operations, e.g. reading writing problem/algorithm to a new module called [jsprit-io](https://github.com/graphhopper/jsprit/tree/master/jsprit-io). this way the core is even more lightweight and less dependent on other libraries - switched from log4j to the [logger facade slf4j](http://www.slf4j.org/) to allow developers to plugin the logger of their choice From 3d988388e7666c4f409f1e8c57cdacbe51b8d73b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Schr=C3=B6der?= Date: Thu, 4 Aug 2016 10:19:09 +0200 Subject: [PATCH 7/7] what has and will change for v1.7 --- WHATS_NEW.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index ce77d3d6..462a7cc0 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -3,7 +3,7 @@ WHATS NEW ------------------------------ ?? new release **v1.7** - move packages to [graphhopper.com](https://graphhopper.com/) -- change license from GPLv3 to [Apache v2](https://github.com/graphhopper/jsprit/blob/master/LICENSE.md) to make it even more attractive to other developers +- change license from GPLv3 to [Apache v2](https://github.com/graphhopper/jsprit/blob/master/LICENSE.md) to make it even more attractive for other developers and their commercial applications - pushed binaries to maven central, i.e. made it better accessible and we get rid of our own repo - outsourced various io operations, e.g. reading writing problem/algorithm to a new module called [jsprit-io](https://github.com/graphhopper/jsprit/tree/master/jsprit-io). this way the core is even more lightweight and less dependent on other libraries - switched from log4j to the [logger facade slf4j](http://www.slf4j.org/) to allow developers to plugin the logger of their choice