Commit Diff


commit - 098df477c293f7dfa7f4ad92276c21c449c226c6
commit + 542928b599c4a2357a4ee3dae77f32e3a0498651
blob - ef3c16603987e3422d9816c525d4843422c94801
blob + 71dd5583222a698539d0e22659e8114b285e6451
--- ChangeLog.md
+++ ChangeLog.md
@@ -5,7 +5,16 @@ All notable changes to this project will be documented
 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).
 
-## [1.2] - TBD
+## [1.2.1] - 2023-05-30
+### Changed
+- .gitignore
+- Replace bzero(3) with memset(3)
+
+### Fixed
+- Fix handling of CD drives with no CD in them
+- Correct date of manual
+
+## [1.2] - 2023-05-17
 ### Added
 - Accept "disk" arguments.
 - Show RAID disks
blob - 087992bd3d6fe74119dca5a03212f9f3643c214e
blob + fccc8e141066676c8c8cdd6c37e71a489395dbe5
--- Makefile
+++ Makefile
@@ -2,7 +2,7 @@
 # See LICENSE file for copyright and license details.
 .POSIX:
 
-VERSION = 1.2
+VERSION = 1.2.1
 PREFIX = /usr/local
 MANPREFIX = ${PREFIX}/man
 MY_CFLAGS = -Wall -Wextra -Werror -pedantic -std=c99 -DVERSION=\"${VERSION}\" ${CFLAGS}