Skip to content

Commit df7b378

Browse files
committed
Bump to version 1.3.1
1 parent 7a20854 commit df7b378

File tree

4 files changed

+29
-10
lines changed

4 files changed

+29
-10
lines changed

.github/release-drafter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name-template: 'v$RESOLVED_VERSION 🌈'
2-
tag-template: 'v$RESOLVED_VERSION'
1+
name-template: '$RESOLVED_VERSION 🌈'
2+
tag-template: '$RESOLVED_VERSION'
33
categories:
44
- title: '🚀 Features'
55
labels:

.github_changelog_generator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
future-release=1.3.0
1+
future-release=1.3.1

CHANGELOG.md

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
# Changelog
22

3+
## [1.3.1](https://github.com/didix21/Shusky/tree/1.3.1) (2021-07-07)
4+
5+
[Full Changelog](https://github.com/didix21/Shusky/compare/1.3.0...1.3.1)
6+
7+
**Implemented enhancements:**
8+
9+
- Migrate Travis to Github actions [\#48](https://github.com/didix21/Shusky/issues/48)
10+
11+
**Fixed bugs:**
12+
13+
- Add \#!/bin/sh on the top of each hook script [\#55](https://github.com/didix21/Shusky/issues/55)
14+
15+
**Merged pull requests:**
16+
17+
- Maintenance/GitHub action release drafter [\#57](https://github.com/didix21/Shusky/pull/57) ([didix21](https://github.com/didix21))
18+
- Run tests and format them using xcpretty [\#54](https://github.com/didix21/Shusky/pull/54) ([didix21](https://github.com/didix21))
19+
- GitHub action pr autolabeler [\#53](https://github.com/didix21/Shusky/pull/53) ([didix21](https://github.com/didix21))
20+
- Create swift.yml [\#50](https://github.com/didix21/Shusky/pull/50) ([didix21](https://github.com/didix21))
21+
322
## [1.3.0](https://github.com/didix21/Shusky/tree/1.3.0) (2021-02-28)
423

524
[Full Changelog](https://github.com/didix21/Shusky/compare/1.2.1...1.3.0)
625

726
**Implemented enhancements:**
827

928
- Improve SPM commands execution time running binaries [\#46](https://github.com/didix21/Shusky/issues/46)
29+
- Enhance/46 improve spm commands execution time [\#47](https://github.com/didix21/Shusky/pull/47) ([didix21](https://github.com/didix21))
1030

1131
**Merged pull requests:**
1232

@@ -17,6 +37,10 @@
1737

1838
[Full Changelog](https://github.com/didix21/Shusky/compare/1.2.0...1.2.1)
1939

40+
**Fixed bugs:**
41+
42+
- Fix minor issues [\#43](https://github.com/didix21/Shusky/pull/43) ([didix21](https://github.com/didix21))
43+
2044
## [1.2.0](https://github.com/didix21/Shusky/tree/1.2.0) (2020-11-07)
2145

2246
[Full Changelog](https://github.com/didix21/Shusky/compare/1.1.0...1.2.0)
@@ -27,10 +51,6 @@
2751
- Improve how information is printed in console [\#39](https://github.com/didix21/Shusky/issues/39)
2852
- \[\#39\] Improve how information is printed in console [\#41](https://github.com/didix21/Shusky/pull/41) ([didix21](https://github.com/didix21))
2953

30-
**Fixed bugs:**
31-
32-
- Fix minor issues [\#43](https://github.com/didix21/Shusky/pull/43) ([didix21](https://github.com/didix21))
33-
3454
**Merged pull requests:**
3555

3656
- 40 update dependencies and buildtools [\#42](https://github.com/didix21/Shusky/pull/42) ([didix21](https://github.com/didix21))
@@ -42,8 +62,6 @@
4262
**Implemented enhancements:**
4363

4464
- Add overwrite option for installing Shusky [\#36](https://github.com/didix21/Shusky/issues/36)
45-
- Enhance/46 improve spm commands execution time [\#47](https://github.com/didix21/Shusky/pull/47) ([didix21](https://github.com/didix21))
46-
- Add overwrite \#36 [\#38](https://github.com/didix21/Shusky/pull/38) ([didix21](https://github.com/didix21))
4765

4866
**Fixed bugs:**
4967

@@ -57,6 +75,7 @@
5775
**Implemented enhancements:**
5876

5977
- Prefer run binary instead of swift run [\#33](https://github.com/didix21/Shusky/issues/33)
78+
- Add overwrite \#36 [\#38](https://github.com/didix21/Shusky/pull/38) ([didix21](https://github.com/didix21))
6079
- Prefer run shusky binary instead of swift run shusky [\#34](https://github.com/didix21/Shusky/pull/34) ([didix21](https://github.com/didix21))
6180

6281
**Closed issues:**

Sources/Shusky/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ struct Shusky: ParsableCommand {
2020
NOTE: To skip any git hook execution run: 'SKIP_SHUSKY=1 <git command>'.
2121
For example, to skip pre-push run: 'SKIP_SHUSKY=1 git push'.
2222
""",
23-
version: "1.3.0",
23+
version: "1.3.1",
2424
subcommands: [Install.self, Run.self, Uninstall.self]
2525
)
2626

0 commit comments

Comments
 (0)