Skip to content

Commit

Permalink
gptgen 1.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
xorangekiller committed Apr 29, 2018
1 parent d90916d commit 71d8664
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0)
project(gptgen VERSION 1.2 LANGUAGES CXX)
project(gptgen VERSION 1.2.1 LANGUAGES CXX)

if(${CMAKE_CXX_COMPILER_ID} STREQUAL Clang)
set(USING_CLANG TRUE)
Expand Down
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2018-04-29 Karl Lenz <xorangekiller@gmail.com>

version 1.2.1
* Updated the Windows build instructions for newer versions of
Visual Studio (with integrated CMake support), and rewrote the
README in Markdown.
* Fixed partition naming to be more useful (rather than just 36
UTF-16 dagger (U+0x2020) characters like before). Thanks Phillip
Hellewell for finding and fixing it!

2015-08-30 Karl Lenz <xorangekiller@gmail.com>

version 1.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
README for gptgen v1.2
======================
README for gptgen v1.2.1
========================

1. Introduction
---------------
Expand Down
4 changes: 2 additions & 2 deletions gptgen.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************\
* gptgen version 1.2 *
* gptgen version 1.2.1 *
* Utility for converting MBR/MSDOS-partitioned disk drives *
* to GUID Partition Table. *
* *
Expand Down Expand Up @@ -663,7 +663,7 @@ int main(int argc, char *argv[])
memset((void *)curr, 0, 64);

cout << argv[0] << ": Partition table converter "
<< "v1.2" << endl;
<< "v1.2.1" << endl;
cout << endl;

// XXX The command-line parsing code has room for improvements...
Expand Down

0 comments on commit 71d8664

Please sign in to comment.