Skip to content

Commit 1bd4d5f

Browse files
authored
Merge pull request #12 from kromiii/tagpr-from-v0.1.7
Release for v0.1.8
2 parents 64e64ee + 6355613 commit 1bd4d5f

File tree

4 files changed

+67
-1
lines changed

4 files changed

+67
-1
lines changed

.github/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- tagpr

.tagpr

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# config file for the tagpr in git config format
2+
# The tagpr generates the initial configuration, which you can rewrite to suit your environment.
3+
# CONFIGURATIONS:
4+
# tagpr.releaseBranch
5+
# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
6+
# creates or updates a pull request as a release candidate, or tags when they are merged.
7+
#
8+
# tagpr.versionFile
9+
# Versioning file containing the semantic version needed to be updated at release.
10+
# It will be synchronized with the "git tag".
11+
# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
12+
# Sometimes the source code file, such as version.go or Bar.pm, is used.
13+
# If you do not want to use versioning files but only git tags, specify the "-" string here.
14+
# You can specify multiple version files by comma separated strings.
15+
#
16+
# tagpr.vPrefix
17+
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
18+
# This is only a tagging convention, not how it is described in the version file.
19+
#
20+
# tagpr.changelog (Optional)
21+
# Flag whether or not changelog is added or changed during the release.
22+
#
23+
# tagpr.command (Optional)
24+
# Command to change files just before release.
25+
#
26+
# tagpr.template (Optional)
27+
# Pull request template file in go template format
28+
#
29+
# tagpr.templateText (Optional)
30+
# Pull request template text in go template format
31+
#
32+
# tagpr.release (Optional)
33+
# GitHub Release creation behavior after tagging [true, draft, false]
34+
# If this value is not set, the release is to be created.
35+
#
36+
# tagpr.majorLabels (Optional)
37+
# Label of major update targets. Default is [major]
38+
#
39+
# tagpr.minorLabels (Optional)
40+
# Label of minor update targets. Default is [minor]
41+
#
42+
# tagpr.commitPrefix (Optional)
43+
# Prefix of commit message. Default is "[tagpr]"
44+
#
45+
[tagpr]
46+
vPrefix = true
47+
releaseBranch = main
48+
versionFile = package.json

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
## [v0.1.8](https://github.com/kromiii/notion-to-slides/compare/v0.1.7...v0.1.8) - 2024-11-13
4+
- Bump cookie and express by @dependabot in https://github.com/kromiii/notion-to-slides/pull/9
5+
- Add Port Option for Node Server Initialization by @WANZARGEN in https://github.com/kromiii/notion-to-slides/pull/11
6+
7+
## [v0.1.7](https://github.com/kromiii/notion-to-slides/compare/v0.1.6...v0.1.7) - 2024-10-02
8+
9+
## [v0.1.6](https://github.com/kromiii/notion-to-slides/commits/v0.1.6) - 2024-10-02
10+
- Bump katex from 0.16.9 to 0.16.10 by @dependabot in https://github.com/kromiii/notion-to-slides/pull/1
11+
- Add real time update feature by @kromiii in https://github.com/kromiii/notion-to-slides/pull/3
12+
- Bump body-parser and express by @dependabot in https://github.com/kromiii/notion-to-slides/pull/5
13+
- Remove unused code for periodic updates by @kromiii in https://github.com/kromiii/notion-to-slides/pull/7
14+
- Add workflow for publishing package to npmjs by @kromiii in https://github.com/kromiii/notion-to-slides/pull/8

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publishConfig": {
44
"access": "public"
55
},
6-
"version": "0.1.7",
6+
"version": "0.1.8",
77
"description": "Convert notion page to pdf slides",
88
"main": "dist/index.js",
99
"bin": {

0 commit comments

Comments
 (0)