Prepare for release v4.1.1 Sake

This commit is contained in:
Arun Prakash Jana 2021-06-03 22:12:36 +05:30
parent c205177ac6
commit 5a6df62b1c
No known key found for this signature in database
GPG key ID: A75979F35C080412
5 changed files with 21 additions and 6 deletions

View file

@ -85,6 +85,8 @@ jobs:
- run: - run:
name: "auto-generate packages" name: "auto-generate packages"
command: | command: |
# Create dist directory if it doesn't exist
mkdir ./dist
# Clean up # Clean up
rm -rf ./dist/* rm -rf ./dist/*
# Pack source # Pack source
@ -94,7 +96,7 @@ jobs:
#pip install packagecore #pip install packagecore
#packagecore -c misc/packagecore/packagecore.yaml -o ./dist/ ${CIRCLE_TAG#v} #packagecore -c misc/packagecore/packagecore.yaml -o ./dist/ ${CIRCLE_TAG#v}
# Move source pack to dist # Move source pack to dist
mv ../${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG}.tar.gz dist/ mv ../${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG}.tar.gz ./dist/
- run: - run:
name: "publish to GitHub" name: "publish to GitHub"

View file

@ -1,4 +1,17 @@
nnn v4.1 Sake nnn v4.1.1 Sake
2021-06-03
- fix segfault on session save (#1041)
- remove redundant `_Atomic` usage
- move [`patches`](../tree/master/patches) directory to top-level
- fix and cleanup gitstatus patch
- plugin `imgview` improvements (#1049)
- restore source-code packing on CircleCI
- add Makefile target to compile with musl
-------------------------------------------------------------------------------
nnn v4.1
2021-06-02 2021-06-02
- a patch management model for approved patches - a patch management model for approved patches

View file

@ -10,9 +10,9 @@ resource app_signature "application/x-vnd.Jarun-nnn";
resource app_version { resource app_version {
major = 4, major = 4,
middle = 1, middle = 1,
minor = 0, minor = 1,
variety = B_APPV_DEVELOPMENT, variety = B_APPV_FINAL,
internal = 0, internal = 0,
short_info = "nnn", short_info = "nnn",

2
nnn.1
View file

@ -1,4 +1,4 @@
.Dd Jun 02, 2021 .Dd Jun 03, 2021
.Dt NNN 1 .Dt NNN 1
.Os .Os
.Sh NAME .Sh NAME

View file

@ -128,7 +128,7 @@
#endif #endif
/* Macro definitions */ /* Macro definitions */
#define VERSION "4.1" #define VERSION "4.1.1"
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn" #define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
#ifndef NOSSN #ifndef NOSSN