diff --git a/CHANGELOG.md b/CHANGELOG.md index 971e6c95f..01d83eab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ **Edison 1.1.0 is depending on Spring Boot 1.5.2.RELEASE** +**Bugfixes:** + +* **[edison-core]** Added /internal/js to LDAP whitelist, so the JS can be loaded w/o authentication in case of +whilelisted /internal/jobs or /internal/jobdefinitions + **Deprecations:** * **[edison-core]** Deprecated the (Beta) ServiceSpecs. diff --git a/README.md b/README.md index a46703371..0b387d95c 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,8 @@ It's purpose is to provide a common implementation for cross-cutting requirement ## Future Releases aka Roadmap +[Semantic Versioning v2.0.0](http://semver.org/spec/v2.0.0.html) is used to specify the version numbers. + This project maintains its roadmap with [issues](https://github.com/otto-de/edison-microservice/issues) and [milestones](https://github.com/otto-de/edison-microservice/milestones). **[1.0.0](https://github.com/otto-de/edison-microservice/milestone/1)**: Edison Microservices for Spring Boot 1.4 ✔ diff --git a/build.gradle b/build.gradle index c1374baa7..d40c71c38 100644 --- a/build.gradle +++ b/build.gradle @@ -27,14 +27,16 @@ subprojects { apply plugin: 'eclipse' apply plugin: 'project-report' - // Major Release: X.0.0: Breaking Changes. Should be avoided if possible, or planned for future release. - // Minor Release: 0.X.0: Additional Features, updates from minor releases in Spring - // Micro Release: 0.0.X: Bugfixes, non-breaking changes, updates from micro releases in Spring + // USE SEMANTIC VERSIONING AS SPECIFIED HERE: http://semver.org/spec/v2.0.0.html + // + // Major Release: X.0.0-RELEASE: Breaking Changes. Should be avoided if possible, or planned for future release. + // Minor Release: 0.X.0-RELEASE: Additional Features, updates from minor releases in Spring + // Micro Release: 0.0.X-RELEASE: Bugfixes, non-breaking changes, updates from micro releases in Spring // // DO NOT FORGET TO DOCUMENT CHANGES IN CHANGELOG.md // // Add a GitHub release for every new release: https://github.com/otto-de/edison-microservice/releases - version = '1.1.0.beta1' + version = '1.1.0-beta.2' group = 'de.otto.edison' repositories {