Commit 5a6df62 1 parent c205177 commit 5a6df62 Copy full SHA for 5a6df62
File tree 5 files changed +21
-6
lines changed
5 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 85
85
- run :
86
86
name : " auto-generate packages"
87
87
command : |
88
+ # Create dist directory if it doesn't exist
89
+ mkdir ./dist
88
90
# Clean up
89
91
rm -rf ./dist/*
90
92
# Pack source
94
96
#pip install packagecore
95
97
#packagecore -c misc/packagecore/packagecore.yaml -o ./dist/ ${CIRCLE_TAG#v}
96
98
# Move source pack to dist
97
- mv ../${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG}.tar.gz dist/
99
+ mv ../${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG}.tar.gz ./ dist/
98
100
99
101
- run :
100
102
name : " publish to GitHub"
Original file line number Diff line number Diff line change 1
- nnn v4.1 Sake
1
+ nnn v4.1.1 Sake
2
+ 2021-06-03
3
+
4
+ - fix segfault on session save (#1041)
5
+ - remove redundant `_Atomic` usage
6
+ - move [`patches`](../tree/master/patches) directory to top-level
7
+ - fix and cleanup gitstatus patch
8
+ - plugin `imgview` improvements (#1049)
9
+ - restore source-code packing on CircleCI
10
+ - add Makefile target to compile with musl
11
+
12
+ -------------------------------------------------------------------------------
13
+
14
+ nnn v4.1
2
15
2021-06-02
3
16
4
17
- a patch management model for approved patches
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ resource app_signature "application/x-vnd.Jarun-nnn";
10
10
resource app_version {
11
11
major = 4,
12
12
middle = 1,
13
- minor = 0 ,
13
+ minor = 1 ,
14
14
15
- variety = B_APPV_DEVELOPMENT ,
15
+ variety = B_APPV_FINAL ,
16
16
internal = 0,
17
17
18
18
short_info = "nnn",
Original file line number Diff line number Diff line change 1
- .Dd Jun 02 , 2021
1
+ .Dd Jun 03 , 2021
2
2
.Dt NNN 1
3
3
.Os
4
4
.Sh NAME
Original file line number Diff line number Diff line change 128
128
#endif
129
129
130
130
/* Macro definitions */
131
- #define VERSION "4.1"
131
+ #define VERSION "4.1.1 "
132
132
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
133
133
134
134
#ifndef NOSSN
You can’t perform that action at this time.
0 commit comments