Skip to content

Commit

Permalink
Prepare for release v4.1.1 Sake
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Jun 3, 2021
1 parent c205177 commit 5a6df62
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ jobs:
- run:
name: "auto-generate packages"
command: |
# Create dist directory if it doesn't exist
mkdir ./dist
# Clean up
rm -rf ./dist/*
# Pack source
Expand All @@ -94,7 +96,7 @@ jobs:
#pip install packagecore
#packagecore -c misc/packagecore/packagecore.yaml -o ./dist/ ${CIRCLE_TAG#v}
# Move source pack to dist
mv ../${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG}.tar.gz dist/
mv ../${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG}.tar.gz ./dist/
- run:
name: "publish to GitHub"
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -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

- a patch management model for approved patches
Expand Down
4 changes: 2 additions & 2 deletions misc/haiku/nnn.rdef
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ resource app_signature "application/x-vnd.Jarun-nnn";
resource app_version {
major = 4,
middle = 1,
minor = 0,
minor = 1,

variety = B_APPV_DEVELOPMENT,
variety = B_APPV_FINAL,
internal = 0,

short_info = "nnn",
Expand Down
2 changes: 1 addition & 1 deletion nnn.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.Dd Jun 02, 2021
.Dd Jun 03, 2021
.Dt NNN 1
.Os
.Sh NAME
Expand Down
2 changes: 1 addition & 1 deletion src/nnn.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
#endif

/* Macro definitions */
#define VERSION "4.1"
#define VERSION "4.1.1"
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"

#ifndef NOSSN
Expand Down

1 comment on commit 5a6df62

@jarun
Copy link
Owner Author

@jarun jarun commented on 5a6df62 Jun 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@CodeforEvolution @dilawar @eclipso @fornwall @sjmulder @szlin nnn v4.1.1 is released!

https://github.com/jarun/nnn/releases/tag/v4.1.1

There were some issues we needed to take care of hence another quick release. Sorry for the inconvenience.

Please sign in to comment.