Skip to content

Commit 414c87c

Browse files
committed
[version] Update version to 1.4.1
1 parent d141bf4 commit 414c87c

29 files changed

+71
-62
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.0
1+
1.4.1

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ if (CMAKE_VERSION VERSION_LESS 3.0)
1717
project(MALT)
1818
else()
1919
cmake_policy(SET CMP0048 NEW)
20-
project(MALT VERSION 1.4.0)
20+
project(MALT VERSION 1.4.1)
2121
endif()
2222

2323
############################################################
2424
#set versions to dispatch in code
25-
set(MALT_VERSION "1.4.0")
25+
set(MALT_VERSION "1.4.1")
2626
set(MALT_VERSION_NOTE "")
2727
set(MALT_SO_VERSION "1")
2828
set(MALT_JSON_FORMAT_VERSION "1.1")

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change log
22
==========
33

4+
1.4.1 - 14/10/2025
5+
------------------
6+
7+
- Fix blocking issue in malt-passwd command (issue #136).
8+
49
1.4.0 - 26/09/2025
510
------------------
611

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = MALT
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.4.0
41+
PROJECT_NUMBER = 1.4.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

dev/gen_archive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
############################################################
2525
#extract version
2626
PACKAGE_NAME="malt"
27-
PACKAGE_VERSION="1.4.0"
27+
PACKAGE_VERSION="1.4.1"
2828

2929
############################################################
3030
# Generate MALT archive

dev/packaging.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
############################################################
1212
#setup version
13-
VERSION=1.4.0
13+
VERSION=1.4.1
1414
VERSION=$(echo $VERSION | cut -f 1 -d '-')
1515

1616
############################################################

packaging/README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ I. UBUNTU / DEBIAN :
1111
--------------------
1212

1313
This project support the debian packing to build .dev files. To build such package you may use the files in packaging/debian.
14-
First create a directory in your home dir, place the project archive in it and rename it to malt_1.4.0.orig.tar.gz.
14+
First create a directory in your home dir, place the project archive in it and rename it to malt_1.4.1.orig.tar.gz.
1515

1616
To setup your working environneemnt, you will found documentation on
1717
https://wiki.ubuntu.com/PbuilderHowto or https://wiki.debian.org/IntroDebianPackaging. We mosly need :
@@ -21,12 +21,12 @@ https://wiki.ubuntu.com/PbuilderHowto or https://wiki.debian.org/IntroDebianPack
2121

2222
If you work with git version you can build the archive with :
2323

24-
git archive --prefix=malt-1.4.0/ v1.4.0 | gzip > malt_1.4.0.orig.tar.gz
24+
git archive --prefix=malt-1.4.1/ v1.4.1 | gzip > malt_1.4.1.orig.tar.gz
2525

26-
Go to your directory and extract _1.4.0.orig.tar.gz with and go in the directory.
26+
Go to your directory and extract _1.4.1.orig.tar.gz with and go in the directory.
2727

28-
tar -xvzf malt_1.4.0.orig.tar.gz
29-
cd malt-1.4.0
28+
tar -xvzf malt_1.4.1.orig.tar.gz
29+
cd malt-1.4.1
3030

3131
Now go to the -0.0.1 directory and copy the packaging/debian into debian :
3232

@@ -61,7 +61,7 @@ First ensure to get the required tools :
6161

6262
Now generate the archive file (or download it from internet) :
6363

64-
git archive --prefix=-1.4.0/ 1.4.0 | bzip2 > ~/rpmbuild/SOURCES/-1.4.0.tar.bz2
64+
git archive --prefix=-1.4.1/ 1.4.1 | bzip2 > ~/rpmbuild/SOURCES/-1.4.1.tar.bz2
6565

6666
And build the package :
6767

@@ -88,25 +88,25 @@ Now get the project archive and place it in /usr/portage/distfiles (or correspon
8888
you work on the git version, you can build the project archive with :
8989

9090
--------------------------------------------------------------------
91-
$user> git archive --prefix=malt-1.4.0/ v1.4.0 | gzip > malt-1.4.0.tar.gz
91+
$user> git archive --prefix=malt-1.4.1/ v1.4.1 | gzip > malt-1.4.1.tar.gz
9292
--------------------------------------------------------------------
9393

9494
Now got to the /usr/local/portage/myoverlay/dev-libs and build the Manifest file :
9595

9696
--------------------------------------------------------------------
97-
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.0.ebuild manifest
97+
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.1.ebuild manifest
9898
--------------------------------------------------------------------
9999

100100
Ok now you can test the build septs one by one :
101101

102102
--------------------------------------------------------------------
103-
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.0.ebuild clean
104-
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.0.ebuild fetch
105-
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.0.ebuild unpack
106-
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.0.ebuild prepare
107-
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.0.ebuild configure
108-
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.0.ebuild compile
109-
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.0.ebuild test
103+
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.1.ebuild clean
104+
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.1.ebuild fetch
105+
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.1.ebuild unpack
106+
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.1.ebuild prepare
107+
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.1.ebuild configure
108+
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.1.ebuild compile
109+
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.4.1.ebuild test
110110
--------------------------------------------------------------------
111111

112112
... (I don't do install here bu you also can do preinst, install, postinst, qmerge (maybe qmerge is not a goot idea for the
@@ -115,6 +115,6 @@ fist testings steps).
115115
Or you can simply run :
116116

117117
--------------------------------------------------------------------
118-
#root> echo "=dev-libs/malt-1.4.0" >> /etc/portage/package.keywords
118+
#root> echo "=dev-libs/malt-1.4.1" >> /etc/portage/package.keywords
119119
#root> emerge -a malt
120120
--------------------------------------------------------------------

packaging/archlinux/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Maintainer: Sebastien Valat <sebastien.valat-dev@orange.fr>
1111
pkgname=MALT
12-
pkgver=1.4.0
12+
pkgver=1.4.1
1313
pkgrel=1
1414
pkgdesc="Memory profiling tool to track memory allocations (malloc,free,realloc...)."
1515
arch=('i686' 'x86_64')

packaging/debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
malt (1.4.0) UNRELEASED; urgency=low
1+
malt (1.4.1) UNRELEASED; urgency=low
22

3-
* Version 1.4.0 of malt
3+
* Version 1.4.1 of malt
44

55
-- Sébastien Valat <sebastien.valat.dev@orange.fr> Thu, 25 Sep 2025 19:24:57 +0200
66

packaging/fedora/malt.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
############################################################
1010

1111
Name: malt
12-
Version: 1.4.0
12+
Version: 1.4.1
1313
Release: 1%{?dist}
1414
Summary: Memory profiling tool to track memory allocations (malloc, realloc, free...)
1515

0 commit comments

Comments
 (0)