Skip to content

Commit

Permalink
Updated the file version
Browse files Browse the repository at this point in the history
  • Loading branch information
Danixu committed Apr 10, 2024
1 parent 6b490da commit a845672
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Ziso Changelog

## v0.6.0

* The logging was moved to the spdlog library to allow to add tracing logs
* Fixed a bug when decompressing files with a not default blocksize, for example 2352 when compressing CD-ROM's.

## v0.5.1

* Added an hdl_dump fix to avoid an hdl_dump bug which causes file corruption when copying compressed files with a size not divisible by 2048.

## v0.5.0

* First version of the program.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.14)
# Project name and a few useful settings. Other commands can pick up the results
project(
Ziso
VERSION 0.5.1
VERSION 0.6.0
DESCRIPTION "Another Ziso compressor with advanced features"
LANGUAGES C CXX)

Expand Down
2 changes: 1 addition & 1 deletion include/ziso.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define TITLE "ziso - ZSO compressor/decompressor"
#define COPYR "Created by Daniel Carrasco (2023)"
#define VERSI "0.5.2"
#define VERSI "0.6.0"

#include "banner.h"
#include <chrono>
Expand Down

0 comments on commit a845672

Please sign in to comment.