Skip to content

Commit aedf3fd

Browse files
committed
feat: try to use $SEMVER
1 parent 97d915b commit aedf3fd

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,56 @@
11
## (2022-12-14)
22

3+
4+
5+
6+
## <small>0.0.7 (2022-12-14)</small>
7+
8+
* chore: new version %NEW_VERSION% ([97d915b](https://github.com/xenial-io/Xenial.RTool/commit/97d915b))
39
* fix: try to fix initial change log generation ([b327d2d](https://github.com/xenial-io/Xenial.RTool/commit/b327d2d))
410

511

612

13+
## <small>0.0.6 (2022-12-14)</small>
14+
15+
* chore: new version %NEW_VERSION% ([6872d8f](https://github.com/xenial-io/Xenial.RTool/commit/6872d8f))
16+
* chore: new version %NEW_VERSION% ([4b64199](https://github.com/xenial-io/Xenial.RTool/commit/4b64199))
17+
* fix: r-tool uses r tool now ([43473ef](https://github.com/xenial-io/Xenial.RTool/commit/43473ef))
18+
19+
20+
21+
## <small>0.0.5 (2022-12-14)</small>
22+
23+
* feat: added git root detector ([059afdb](https://github.com/xenial-io/Xenial.RTool/commit/059afdb))
24+
* feat: added hook command runner ([45badcd](https://github.com/xenial-io/Xenial.RTool/commit/45badcd))
25+
* feat: added versions ([715d15c](https://github.com/xenial-io/Xenial.RTool/commit/715d15c))
26+
* feat: automatic changelog ([a27f0b2](https://github.com/xenial-io/Xenial.RTool/commit/a27f0b2))
27+
* feat: pack release notes into nuget packages ([f707ea6](https://github.com/xenial-io/Xenial.RTool/commit/f707ea6))
28+
* feat: run pre release hooks ([58b65f0](https://github.com/xenial-io/Xenial.RTool/commit/58b65f0))
29+
30+
31+
32+
## <small>0.0.4 (2022-10-28)</small>
33+
34+
* build: sourcelink ([6372765](https://github.com/xenial-io/Xenial.RTool/commit/6372765))
35+
36+
37+
38+
## <small>0.0.3 (2022-10-28)</small>
39+
40+
* build: fix repo uri ([ef39627](https://github.com/xenial-io/Xenial.RTool/commit/ef39627))
41+
42+
43+
44+
## <small>0.0.2 (2022-10-28)</small>
45+
46+
* build: fixed build ([634b6ec](https://github.com/xenial-io/Xenial.RTool/commit/634b6ec))
47+
* build: set package name and tool name ([1e9273d](https://github.com/xenial-io/Xenial.RTool/commit/1e9273d))
48+
* test: fix messages ([cef561b](https://github.com/xenial-io/Xenial.RTool/commit/cef561b))
49+
* feat: Basic infastructure & detect git repository ([fcc95ba](https://github.com/xenial-io/Xenial.RTool/commit/fcc95ba))
50+
* feat: Confirm Branch ([d8942ae](https://github.com/xenial-io/Xenial.RTool/commit/d8942ae))
51+
* feat: tool almost finished ([85265c4](https://github.com/xenial-io/Xenial.RTool/commit/85265c4))
52+
* Add .gitattributes. ([71200e4](https://github.com/xenial-io/Xenial.RTool/commit/71200e4))
53+
* Add project files. ([89d2eaa](https://github.com/xenial-io/Xenial.RTool/commit/89d2eaa))
754

855

956

Xenial.RTool/ReleaseApplication.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ await ctx.HookCommandRunner.RunCommand(
278278
ctx.CurrentDirectory,
279279
new()
280280
{
281-
["NEW_SEMVER"] = semver,
282-
["TAG_NAME"] = tagName
281+
["SEMVER"] = semver,
282+
["TAGNAME"] = tagName
283283
}
284284
);
285285
ctx.Console.MarkupLineInterpolated($"[gray]Ran Hook: [white]{hook}[/].[/]");

0 commit comments

Comments
 (0)