Skip to content

Commit 2e501fe

Browse files
authored
changelog (#15)
1 parent cf4e964 commit 2e501fe

File tree

4 files changed

+31
-9
lines changed

4 files changed

+31
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ jobs:
3232
steps:
3333
- name: Create GitHub Release
3434
id: create_release
35-
uses: actions/create-release@v1
36-
env:
37-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
35+
uses: ncipollo/[email protected]
3836
with:
39-
tag_name: ${{ github.ref }}
40-
release_name: ${{ github.ref }}
41-
draft: false
42-
prerelease: false
37+
artifacts: "target/*"
38+
generateReleaseNotes: true

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/).
6+
7+
## Unreleased
8+
9+
### Added
10+
11+
- Implemented `find_authors` function (#10)
12+
- Added Handlebars template rendering for `authors.hbs` (#12)
13+
- Added integration test suite (#13, #12)
14+
- Added CI/CD pipeline with GitHub Actions
15+
- Added preprocessor trait implementation (#11)
16+
17+
### Changed
18+
19+
- Improved CLI interface with CmdPreprocessor (#14)
20+
- Implemented removal of all links in preprocessing (#11)
21+
22+
### Infrastructure
23+
24+
- Set up test documentation workflow (#2)
25+
- Added scaffolding and implementation plan (#3)
26+
- Created comprehensive README (#1)

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-github-authors"
3-
version = "0.1.0"
3+
version = "0.1.0-a0"
44
edition = "2021"
55
authors = ["Andrei Fajardo <[email protected]>"]
66
description = "mdbook preprocessor to display Github profiles of authors of a page"

0 commit comments

Comments
 (0)