diff --git a/README.md b/README.md index 14f8e4430..30ce966db 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ [![license](https://img.shields.io/badge/license-CC0%201.0%20Universal-blue.svg)](https://github.com/moqui/moqui-framework/blob/master/LICENSE.md) [![build](https://travis-ci.org/moqui/moqui-framework.svg)](https://travis-ci.org/moqui/moqui-framework) [![release](https://img.shields.io/github/release/moqui/moqui-framework.svg)](https://github.com/moqui/moqui-framework/releases) -[![commits since release](http://img.shields.io/github/commits-since/moqui/moqui-framework/v2.1.1.svg)](https://github.com/moqui/moqui-framework/commits/master) +[![commits since release](http://img.shields.io/github/commits-since/moqui/moqui-framework/v2.1.2.svg)](https://github.com/moqui/moqui-framework/commits/master) [![downloads](https://img.shields.io/github/downloads/moqui/moqui-framework/total.svg)](https://github.com/moqui/moqui-framework/releases) -[![downloads](https://img.shields.io/github/downloads/moqui/moqui-framework/v2.1.1/total.svg)](https://github.com/moqui/moqui-framework/releases/tag/v2.1.1) +[![downloads](https://img.shields.io/github/downloads/moqui/moqui-framework/v2.1.2/total.svg)](https://github.com/moqui/moqui-framework/releases/tag/v2.1.2) [![LinkedIn Group](https://img.shields.io/badge/linked%20in%20group-moqui-blue.svg)](https://www.linkedin.com/groups/4640689) [![Google Group](https://img.shields.io/badge/google%20group-moqui-blue.svg)](https://groups.google.com/d/forum/moqui) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 9cd0d087b..07dc33003 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -22,6 +22,7 @@ https://github.com/moqui/moqui-framework/compare/v2.1.1...v2.1.2 - Entity field currency-amount now has 4 decimal digits in the DB and currency-precise has 5 decimal digits for more currency flexibility - Added minRetryTime to ServiceJob to avoid immediate and excessive retries - New Gradle tasks for managing git tags +- Support for read only clone datasource configuration and use (if available) in entity finds ### Bug Fixes diff --git a/framework/build.gradle b/framework/build.gradle index 76e5124a1..e2e1d1498 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -16,7 +16,7 @@ tasks.withType(JavaCompile) { options.compilerArgs << "-Xlint:unchecked" } tasks.withType(GroovyCompile) { options.compilerArgs << "-Xlint:unchecked" } // tasks.withType(GroovyCompile) { options.compilerArgs << "-Xlint:deprecation" } -version = '2.1.2-rc2' +version = '2.1.2' apply plugin: 'groovy' apply plugin: 'war'