Skip to content

Commit 50f775e

Browse files
committed
Release this as version 0.1.4
1 parent 4f19145 commit 50f775e

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## [Unreleased]
6+
## [0.1.4] - 2023-09-24
77
### Changed
88
* Update the bundled dependencies on Windows.
99
### Fixed
@@ -40,7 +40,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4040
### Added
4141
* Initial public release.
4242

43-
[Unreleased]: https://github.com/bmjcode/renamifier/compare/v0.1.3...HEAD
43+
[Unreleased]: https://github.com/bmjcode/renamifier/compare/v0.1.4...HEAD
44+
[0.1.4]: https://github.com/bmjcode/renamifier/compare/v0.1.3...v0.1.4
4445
[0.1.3]: https://github.com/bmjcode/renamifier/compare/v0.1.2...v0.1.3
4546
[0.1.2]: https://github.com/bmjcode/renamifier/compare/v0.1.1...v0.1.2
4647
[0.1.1]: https://github.com/bmjcode/renamifier/compare/v0.1.0...v0.1.1

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.1.0)
22
include(FindPkgConfig)
33

4-
project(renamifier VERSION 0.1.3 LANGUAGES CXX)
4+
project(renamifier VERSION 0.1.4 LANGUAGES CXX)
55

66
set(CMAKE_CXX_STANDARD 11)
77
set(CMAKE_CXX_STANDARD_REQUIRED ON)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Renamifier lets you rename files while you're viewing them, making it easier to
99

1010
File | Size | Description
1111
---- | ---- | -----------
12-
[renamifier-0.1.3-win32-setup.exe](https://github.com/bmjcode/renamifier/releases/download/v0.1.3/renamifier-0.1.3-win32-setup.exe) | 39.6 MB | Windows (32-bit installer)
13-
[renamifier-0.1.3-win64-setup.exe](https://github.com/bmjcode/renamifier/releases/download/v0.1.3/renamifier-0.1.3-win64-setup.exe) | 39.2 MB | Windows (64-bit installer)
14-
[renamifier-0.1.3.zip](https://github.com/bmjcode/renamifier/archive/refs/tags/v0.1.3.zip) | | source code (zip)
15-
[renamifier-0.1.3.tar.gz](https://github.com/bmjcode/renamifier/archive/refs/tags/v0.1.3.tar.gz) | | source code (tar.gz)
12+
[renamifier-0.1.4-win32-setup.exe](https://github.com/bmjcode/renamifier/releases/download/v0.1.4/renamifier-0.1.4-win32-setup.exe) | 40.1 MB | Windows (32-bit installer)
13+
[renamifier-0.1.4-win64-setup.exe](https://github.com/bmjcode/renamifier/releases/download/v0.1.4/renamifier-0.1.4-win64-setup.exe) | 39.7 MB | Windows (64-bit installer)
14+
[renamifier-0.1.4.zip](https://github.com/bmjcode/renamifier/archive/refs/tags/v0.1.4.zip) | | source code (zip)
15+
[renamifier-0.1.4.tar.gz](https://github.com/bmjcode/renamifier/archive/refs/tags/v0.1.4.tar.gz) | | source code (tar.gz)
1616

1717

1818
## How to Use Renamifier

renamifier.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef RENAMIFIER_H
2121
#define RENAMIFIER_H
2222

23-
#define VERSION "0.1.3"
23+
#define VERSION "0.1.4"
2424

2525
#define COPYRIGHT_HTML \
2626
"<p>Copyright &copy; 2021, 2022, 2023 Benjamin Johnson</p>"

winsetup.nsi

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

1414
; Sync this with renamifier.h
1515
!ifndef VERSION
16-
!define VERSION "0.1.3"
16+
!define VERSION "0.1.4"
1717
!endif
1818

1919
; This can be "win32" or "win64"

0 commit comments

Comments
 (0)