-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* #126: Add issue to changelist * #128: Add base CHANGELOG * Issue #128, #126: Add first entries * Link to issue * #128: Adapt contribution guidelines to new Changelog * #128: Tweak README to include changelog * #128: Fix link to changes * Issues #126, #129, #128: Add changelog entries * #128: Add entries for past PRs * #128: Remove extra section to changelog * #128: Rename as suggested * #128: Make link to changelog relative to work in forks/PRs
- Loading branch information
Showing
3 changed files
with
70 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
* Added for new features. | ||
* Changed for changes in existing functionality. | ||
* Deprecated for soon-to-be removed features. | ||
* Removed for now removed features. | ||
* Fixed for any bug fixes. | ||
* Security in case of vulnerabilities. | ||
|
||
# KNOWN ISSUES | ||
* not yet known | ||
|
||
## [Unreleased](https://github.com/zjedi/hugo-scroll/compare/v1.0.0...HEAD) | ||
|
||
### Added | ||
* 2023-03: [#126](https://github.com/zjedi/hugo-scroll/issues/126) Add version information to site's footer by setting the general configuration option `enableGitInfo=true`. | ||
* 2023-03: [#129](https://github.com/zjedi/hugo-scroll/pull/129) External links may contain icons as well, set attribute `icon` accordingly. | ||
* 2023-03: [#99](https://github.com/zjedi/hugo-scroll/pull/99) Add shortcode `extlink` to allow external links. | ||
### Changed | ||
* 2023-03: [#109](https://github.com/zjedi/hugo-scroll/pull/109) Transfer repository of this theme to new Github coordinates: https://github.com/zjedi/hugo-scroll | ||
* 2023-03: [#121](https://github.com/zjedi/hugo-scroll/pull/121) Always open reference link to this theme in a new tab | ||
* 2023-03: [#106](https://github.com/zjedi/hugo-scroll/pull/106) Changes in layout and style. | ||
|
||
### Deprecated | ||
### Removed | ||
### Fixed | ||
* 2023-03: Cleanup generated markup: do not render empty `<section>` in footer. | ||
* 2023-03: [#122](https://github.com/zjedi/hugo-scroll/pull/122) Update docs to allow plain HTML in configurable footer copyright line; no markdown supported anymore. | ||
|
||
### Security | ||
|
||
|
||
|
||
# Template for new releases | ||
## [x.y.z](https://github.com/zjedi/hugo-scroll/compare/v1.0.0...vx.y.z) | ||
|
||
### Added | ||
### Changed | ||
### Deprecated | ||
### Removed | ||
### Fixed | ||
### Security |
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,9 +1,20 @@ | ||
## [Pull Requests](https://github.com/zjedi/hugo-scroll/pulls) | ||
We're open to contributions by opening a pull request. | ||
|
||
When adding a new feature, please modify also `exampleSite` with an example of how the feature can be activated, configured and used. | ||
When adding a new feature, please modify also [exampleSite](./exampleSite/) with an example of how the feature can be activated, configured and used. | ||
|
||
Mention new feature also in relevant `readme.md` section. | ||
Do not forget to mention new feature in a relevant subsection of [README.md](./README.md) | ||
|
||
## [GitHub issues](https://github.com/zjedi/hugo-scroll/issues) | ||
Used for tracking more complex topics and features. | ||
|
||
Alternatively you may use GitHub issues for more complex topics and features. | ||
|
||
## [Changelog](./CHANGELOG.md) | ||
|
||
Feel free to add your contributions to our CHANGELOG, which tracks: | ||
* **Added** for new features. | ||
* **Changed** for changes in existing functionality. | ||
* **Deprecated** for soon-to-be removed features. | ||
* **Removed** for now removed features. | ||
* **Fixed** for any bug fixes. | ||
* **Security** in case of vulnerabilities. |