Skip to content

Commit b1997ae

Browse files
RELEASE 2.0.0 fixes #13 #107 #114
1 parent 49759d6 commit b1997ae

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#*Grails Audit Logging Plugin*#
22

3-
The Grails Audit Logging plugin adds generic event based Audit Logging to a Grails project and also adds support to domain models for hooking into the GORM events system.
3+
The Grails Audit Logging plugin for Grails 3.x adds generic event based Audit Logging to a Grails project and also adds support to domain models for hooking into the GORM events system.
44

55
##**Documentation**##
6-
* For Grails 3.x documentation, see [Grails 3.0.0-SNAPSHOT Documentation](https://robertoschwald.github.io/grails-audit-logging-plugin/snapshot/)
6+
* For Grails 3.x documentation, see [Plugin Documentation](https://robertoschwald.github.io/grails-audit-logging-plugin/)
77
* For Grails 2.x documentation, see [Grails Plugin Page](http://grails.org/plugin/audit-logging "Grails Plugin Page")
88

99
##**Supported Grails versions**##
@@ -40,16 +40,16 @@ Special thanks to all the contributors to the project (in alphabetical order):
4040

4141
Project lead: Robert Oschwald
4242

43-
##**audit-quickstart (version >=1.1.0)**##
44-
2.0.0-SNAPSHOT2 is the first version with audit-quickstart command.
43+
##**audit-quickstart**##
44+
Version 2.0.0 is the first version with audit-quickstart command support.
4545
Therefore, you need to perform "grails audit-quickstart \<package\> \<DomainClass\>" after installing this plugin's version and later. See issue [#13](https://github.com/robertoschwald/grails-audit-logging-plugin/issues/13)
4646

4747
With this, you get a AuditLog domain class in your project which is fully under your control. The domain name is registered in your application.groovy with key "auditLog.auditDomainClassName".
4848

4949
Example:
5050

5151
```
52-
grails audit-quickstart org.example.myproject.AuditLogEvent
52+
grails audit-quickstart org.example.myproject MyAuditLogEvent
5353
5454
```
5555

audit-logging/build.gradle

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
id "com.jfrog.bintray" version "1.4"
1717
}
1818

19-
version "2.0.0.RC1"
19+
version "2.0.0"
2020
group "org.grails.plugins"
2121

2222
apply plugin: 'maven-publish'
@@ -86,8 +86,9 @@ bintray {
8686
licenses = project.hasProperty('license') ? [project.license] : ['Apache-2.0']
8787
publicDownloadNumbers = true
8888
version {
89-
attributes = ['grails-plugin': "$project.group:$project.name"]
9089
name = project.version
90+
desc = 'Grails Audit-Logging Plugin for Grails 3.x'
91+
attributes = ['grails-plugin': "$project.group:$project.name"]
9192
}
9293
}
9394
}

audit-test/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
id "io.spring.dependency-management" version "0.5.1.RELEASE"
1717
}
1818

19-
version "2.0.0.RC1"
19+
version "2.0.0"
2020
group "audit.test"
2121

2222
apply plugin: "spring-boot"

0 commit comments

Comments
 (0)