-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configuration to pretty-print Changelog Entries and Config File (#58
) * Add option to pretty print changelog entries and config * Add option to pretty print changelog entries and config * Bump version * [Format] Auto-formatting --------- Co-authored-by: nnichols <[email protected]>
- Loading branch information
Showing
14 changed files
with
54 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{:version {:major 1 | ||
:minor 0 | ||
:patch 2}, | ||
:version-type :semver3, | ||
:changes {:fixed ["Updated footer link to point to the public repository"]}, | ||
:patch 2} | ||
:version-type :semver3 | ||
:changes {:fixed ["Updated footer link to point to the public repository"]} | ||
:timestamp "2022-12-11T15:51:59.959778100Z"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{:version {:major 1 | ||
:minor 2 | ||
:patch 0} | ||
:version-type :semver3 | ||
:changes {:added ["Added `:pretty-print-edn?` to the configuration. EDN files for changelog entries and configuration may now be pretty printed."]} | ||
:timestamp "2024-03-03T00:38:25.843229400Z"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{:changelog-filename "CHANGELOG.md" | ||
:changelog-entry-directory ".sealog/changes/" | ||
:version-scheme :semver3} | ||
:version-scheme :semver3 | ||
:pretty-print-edn? true} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<groupId>com.wallbrew</groupId> | ||
<artifactId>lein-sealog</artifactId> | ||
<packaging>jar</packaging> | ||
<version>1.1.0</version> | ||
<version>1.2.0</version> | ||
<name>lein-sealog</name> | ||
<description>A Leiningen plugin for managing your changelog.</description> | ||
<url>https://github.com/Wall-Brew-Co/common-beer-format</url> | ||
|
@@ -20,7 +20,7 @@ | |
<url>https://github.com/Wall-Brew-Co/lein-sealog</url> | ||
<connection>scm:git:git://github.com/Wall-Brew-Co/lein-sealog.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]/Wall-Brew-Co/lein-sealog.git</developerConnection> | ||
<tag>db37860c4764348af4bbdd537b538b2d0ee18955</tag> | ||
<tag>fbbb9f5108342b76fd7ca8329e72b7294c20ede4</tag> | ||
</scm> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters