Skip to content

Commit 6a101e2

Browse files
authored
chore: config chglog (#41)
1 parent d62b636 commit 6a101e2

File tree

3 files changed

+169
-0
lines changed

3 files changed

+169
-0
lines changed

.chglog/CHANGELOG.tpl.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{{ range .Versions }}
2+
<a name="{{ .Tag.Name }}"></a>
3+
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]({{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}){{ else }}{{ .Tag.Name }}{{ end }} ({{ datetime "2006-01-02" .Tag.Date }})
4+
5+
{{ range .CommitGroups -}}
6+
### {{ .Title }}
7+
8+
{{ range .Commits -}}
9+
* {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
10+
{{ end }}
11+
{{ end -}}
12+
13+
{{- if .MergeCommits -}}
14+
### Pull Requests
15+
16+
{{ range .MergeCommits -}}
17+
* {{ .Header }}
18+
{{ end }}
19+
{{ end -}}
20+
21+
{{- if .NoteGroups -}}
22+
{{ range .NoteGroups -}}
23+
### {{ .Title }}
24+
25+
{{ range .Notes }}
26+
{{ .Body }}
27+
{{ end }}
28+
{{ end -}}
29+
{{ end -}}
30+
{{ end -}}

.chglog/config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
style: github
2+
template: CHANGELOG.tpl.md
3+
info:
4+
title: CHANGELOG
5+
repository_url: https://github.com/rsocket/rsocket-rust
6+
options:
7+
commits:
8+
# filters:
9+
# Type:
10+
# - feat
11+
# - fix
12+
# - perf
13+
# - refactor
14+
commit_groups:
15+
# title_maps:
16+
# feat: Features
17+
# fix: Bug Fixes
18+
# perf: Performance Improvements
19+
# refactor: Code Refactoring
20+
header:
21+
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
22+
pattern_maps:
23+
- Type
24+
- Scope
25+
- Subject
26+
notes:
27+
keywords:
28+
- BREAKING CHANGE

CHANGELOG.md

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
2+
<a name="v0.6.0"></a>
3+
## [v0.6.0](https://github.com/rsocket/rsocket-rust/compare/v0.5.3...v0.6.0) (2020-12-13)
4+
5+
### Chore
6+
7+
* prelease 0.6
8+
* upgrade deps
9+
* use gh actions instead of travis ([#22](https://github.com/rsocket/rsocket-rust/issues/22))
10+
11+
### Feat
12+
13+
* implement client-side keepalive ([#25](https://github.com/rsocket/rsocket-rust/issues/25))
14+
* support tokio v0.3.x ([#23](https://github.com/rsocket/rsocket-rust/issues/23))
15+
16+
### Fix
17+
18+
* convert bytes to utf8 safely ([#27](https://github.com/rsocket/rsocket-rust/issues/27))
19+
* optimize bytes write action ([#24](https://github.com/rsocket/rsocket-rust/issues/24))
20+
21+
### Refactor
22+
23+
* use thiserror & anyhow as error struct ([#20](https://github.com/rsocket/rsocket-rust/issues/20))
24+
25+
### Pull Requests
26+
27+
* Merge pull request [#19](https://github.com/rsocket/rsocket-rust/issues/19) from rsocket/develop
28+
29+
30+
<a name="v0.5.3"></a>
31+
## [v0.5.3](https://github.com/rsocket/rsocket-rust/compare/v0.5.2...v0.5.3) (2020-06-11)
32+
33+
### Pull Requests
34+
35+
* Merge pull request [#17](https://github.com/rsocket/rsocket-rust/issues/17) from rsocket/develop
36+
* Merge pull request [#16](https://github.com/rsocket/rsocket-rust/issues/16) from seal90/develop
37+
38+
39+
<a name="v0.5.2"></a>
40+
## [v0.5.2](https://github.com/rsocket/rsocket-rust/compare/v0.5.1...v0.5.2) (2020-05-26)
41+
42+
### Pull Requests
43+
44+
* Merge pull request [#14](https://github.com/rsocket/rsocket-rust/issues/14) from rsocket/feature/messaging
45+
* Merge pull request [#11](https://github.com/rsocket/rsocket-rust/issues/11) from kuronyago/feature/wasm_fire_and_forget
46+
* Merge pull request [#9](https://github.com/rsocket/rsocket-rust/issues/9) from kuronyago/docs/readme_for_websocket_example
47+
48+
49+
<a name="v0.5.1"></a>
50+
## [v0.5.1](https://github.com/rsocket/rsocket-rust/compare/v0.5.0...v0.5.1) (2020-04-06)
51+
52+
### Pull Requests
53+
54+
* Merge pull request [#8](https://github.com/rsocket/rsocket-rust/issues/8) from rsocket/develop
55+
56+
57+
<a name="v0.5.0"></a>
58+
## [v0.5.0](https://github.com/rsocket/rsocket-rust/compare/v0.4.0...v0.5.0) (2020-02-22)
59+
60+
### Pull Requests
61+
62+
* Merge pull request [#6](https://github.com/rsocket/rsocket-rust/issues/6) from rsocket/improve/pick_transport
63+
64+
65+
<a name="v0.4.0"></a>
66+
## [v0.4.0](https://github.com/rsocket/rsocket-rust/compare/v0.3.0...v0.4.0) (2019-12-24)
67+
68+
### Bugfix
69+
70+
* response payload of REQUEST_RESPONSE will be sent with NEXT|COMPLETE flag.
71+
72+
### Pull Requests
73+
74+
* Merge pull request [#4](https://github.com/rsocket/rsocket-rust/issues/4) from rsocket/develop
75+
76+
77+
<a name="v0.3.0"></a>
78+
## [v0.3.0](https://github.com/rsocket/rsocket-rust/compare/v0.2.0...v0.3.0) (2019-12-04)
79+
80+
### Pull Requests
81+
82+
* Merge pull request [#3](https://github.com/rsocket/rsocket-rust/issues/3) from rsocket/feature/routing_metadata
83+
84+
85+
<a name="v0.2.0"></a>
86+
## [v0.2.0](https://github.com/rsocket/rsocket-rust/compare/v0.1.5...v0.2.0) (2019-11-29)
87+
88+
### Pull Requests
89+
90+
* Merge pull request [#2](https://github.com/rsocket/rsocket-rust/issues/2) from rsocket/feature/async_await
91+
92+
93+
<a name="v0.1.5"></a>
94+
## [v0.1.5](https://github.com/rsocket/rsocket-rust/compare/v0.1.4...v0.1.5) (2019-10-08)
95+
96+
97+
<a name="v0.1.4"></a>
98+
## [v0.1.4](https://github.com/rsocket/rsocket-rust/compare/v0.1.3...v0.1.4) (2019-09-06)
99+
100+
101+
<a name="v0.1.3"></a>
102+
## [v0.1.3](https://github.com/rsocket/rsocket-rust/compare/v0.1.2...v0.1.3) (2019-09-03)
103+
104+
105+
<a name="v0.1.2"></a>
106+
## [v0.1.2](https://github.com/rsocket/rsocket-rust/compare/v0.1.0...v0.1.2) (2019-09-02)
107+
108+
109+
<a name="v0.1.0"></a>
110+
## v0.1.0 (2019-08-29)
111+

0 commit comments

Comments
 (0)