Skip to content

Commit bcc1db4

Browse files
authored
Merge pull request #100 from FortnoxAB/prepare-release
Prepare for release of 0.2.0
2 parents f5d0ecd + eab92f2 commit bcc1db4

File tree

10 files changed

+31
-35
lines changed

10 files changed

+31
-35
lines changed

.changeset/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.2.0

.changeset/cyan-sloths-unite.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/few-coins-pump.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fresh-coats-jog.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changeset/red-poets-heal.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# changesets
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- Improved handling of multiline changesets, which previously would produce invalid bullet points.
8+
9+
This change also introduces a Markdown formatter function to clean up any easily fixed formatting issues.
10+
- Introduced more parameters for generating more flexible changesets using the add goal.
11+
12+
You can now create changesets with more prefilled info and with predictable names (useful for testing and dependabot).
13+
14+
The new parameters are `changesetLevel` and `changesetFile` (`changesetContent` was already available).
15+
16+
```
17+
mvn changesets:add -DchangesetLevel=patch -DchangesetContent="My change" -DchangesetFile=magic.md
18+
```
19+
- This change introduces a version policy (`ChangesetsVersionPolicy`) compatible with the Release Maven plugin, together
20+
with a flag `useReleasePluginIntegration` (default `false`) on the `prepare` goal. Enabling this flag will disable
21+
updating POM versions in `prepare` and only perform changeset processing. Updating versions in POMs can then be
22+
delegated to the Release plugin, together with all the other facilities that plugin provides.
23+
24+
### Patch Changes
25+
26+
- Adapt for breaking changes of versions-common (introduced in #47).
27+
28+
329
## 0.1.0
430

531
### Minor Changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ users recognize the ways of working and feel at home.
88

99
This is it, at the moment. Stay tuned for more docs later on, thanks!
1010

11-
# Release Maven Plugin Integration
11+
## Release Maven Plugin Integration
1212

1313
To delegate versioning to the Release Maven Plugin, you can use the `ChangesetsVersionPolicy` together with the `useReleasePluginIntegration` flag:
1414

changesets-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>se.fortnox.changesets</groupId>
88
<artifactId>changesets</artifactId>
9-
<version>0.1.1-SNAPSHOT</version>
9+
<version>0.2.1-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>changesets-java</artifactId>

changesets-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>se.fortnox.changesets</groupId>
88
<artifactId>changesets</artifactId>
9-
<version>0.1.1-SNAPSHOT</version>
9+
<version>0.2.1-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>changesets-maven-plugin</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>se.fortnox.changesets</groupId>
88
<artifactId>changesets</artifactId>
9-
<version>0.1.1-SNAPSHOT</version>
9+
<version>0.2.1-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<name>Changesets Java</name>

0 commit comments

Comments
 (0)