Skip to content

Commit b8169d2

Browse files
committed
prepare 1.1 version ; adapt README, release notes & plugin metadata
1 parent 4b1eafd commit b8169d2

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

README.MD

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ The global announce sends an email to all active users. For that, notifications
1212

1313
It is then possible, for example, to notify every user that an upgrade of the system is planned the next monday at midday.
1414

15+
## Compatibility
16+
17+
Plugin version | GitBucket version
18+
:--------------|:-----------------
19+
1.1.x | 3.7.x
20+
1.0.x | 3.6.x
21+
22+
1523
## Usage
1624

1725
- Open a shell window at the root of the project, hit `sbt package`
@@ -21,6 +29,11 @@ It is then possible, for example, to notify every user that an upgrade of the sy
2129

2230
## Release Notes
2331

32+
### 1.1
33+
34+
- [issue-5](https://github.com/gitbucket-plugins/gitbucket-announce-plugin/issues/5) use new `SystemSettings.useSMTP` property introduced in gitbucket 3.7
35+
- [pullrequest-7](https://github.com/gitbucket-plugins/gitbucket-announce-plugin/pull/7) adapt markdown parser
36+
2437
### 1.0
2538

2639
- introduce gitbucket-announce-plugin

project/build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ object MyBuild extends Build {
77

88
val Organization = "fr.brouillard.gitbucket"
99
val Name = "gitbucket-announce-plugin"
10-
val Version = "1.0"
10+
val Version = "1.1"
1111
val ScalaVersion = "2.11.6"
1212

1313
lazy val project = Project (

src/main/scala/Plugin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1313
override val description: String = "Allows to handle announces for gitbucket"
1414

1515
override val versions: List[Version] = List(
16-
Version(1, 0)
16+
Version(1, 1)
17+
, Version(1, 0)
1718
)
1819

1920
override def javaScripts(registry: PluginRegistry, context: ServletContext, settings: SystemSettings): Seq[(String, String)] = {

0 commit comments

Comments
 (0)