From fd3798cd9672c2968cbd81660641f7cbbadb13fb Mon Sep 17 00:00:00 2001 From: nikitalita <69168929+nikitalita@users.noreply.github.com> Date: Sun, 29 Jan 2023 22:10:05 -0800 Subject: [PATCH] bump version number to 1.1.2 --- CMakeLists.txt | 4 ++-- Champollion/main.cpp | 2 +- Decompiler/PscCoder.cpp | 2 +- Doc/Readme.html | 2 +- vcpkg.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bde50df..74cf968 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_policy(SET CMP0048 NEW) # VERSION variables cmake_policy(SET CMP0091 NEW) # CMAKE_MSVC_RUNTIME_LIBRARY # package information set(PACKAGE_NAME "Champollion") -set(PACKAGE_VERSION "1.1.1") +set(PACKAGE_VERSION "1.1.2") set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}") set(PACKAGE_BUGREPORT "https://github.com/Orvid/champollion/issues") @@ -13,7 +13,7 @@ if(DEFINED ENV{VCPKG_ROOT} AND NOT DEFINED CMAKE_TOOLCHAIN_FILE) CACHE STRING "") endif() -project(${PACKAGE_NAME} VERSION 1.1.1 LANGUAGES CXX) +project(${PACKAGE_NAME} VERSION 1.1.2 LANGUAGES CXX) include(GNUInstallDirs) diff --git a/Champollion/main.cpp b/Champollion/main.cpp index 9dd4e92..60c3f54 100644 --- a/Champollion/main.cpp +++ b/Champollion/main.cpp @@ -54,7 +54,7 @@ OptionsResult getProgramOptions(int argc, char* argv[], Params& params) params.assemblyDir = fs::current_path(); params.papyrusDir = fs::current_path(); - std::string version_string = "Champollion PEX decompiler v1.1.1"; + std::string version_string = "Champollion PEX decompiler v1.1.2"; options::options_description desc(version_string); desc.add_options() ("help,h", "Display the help message") diff --git a/Decompiler/PscCoder.cpp b/Decompiler/PscCoder.cpp index ba9a430..8ad8165 100644 --- a/Decompiler/PscCoder.cpp +++ b/Decompiler/PscCoder.cpp @@ -132,7 +132,7 @@ void Decompiler::PscCoder::writeHeader(const Pex::Binary &pex) { auto& header = pex.getHeader(); auto& debug = pex.getDebugInfo(); - write(";/ Decompiled by Champollion V1.1.1"); // TODO: Make this get the version number dynamically + write(";/ Decompiled by Champollion V1.1.2"); // TODO: Make this get the version number dynamically write(indent(0) << "PEX format v" << (int)header.getMajorVersion() << "." << (int)header.getMinorVersion() << " GameID: " << header.getGameID()); write(indent(0) << "Source : " << header.getSourceFileName()); if (debug.getModificationTime() != 0) diff --git a/Doc/Readme.html b/Doc/Readme.html index 959eb4f..9362201 100644 --- a/Doc/Readme.html +++ b/Doc/Readme.html @@ -1,7 +1,7 @@
-