Skip to content

Commit

Permalink
Bump version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitalita committed Feb 4, 2023
1 parent 9f1c3b3 commit 3765648
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.2")
set(PACKAGE_VERSION "1.1.3")
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "https://github.com/Orvid/champollion/issues")
Expand All @@ -13,7 +13,7 @@ if(DEFINED ENV{VCPKG_ROOT} AND NOT DEFINED CMAKE_TOOLCHAIN_FILE)
CACHE STRING "")
endif()

project(${PACKAGE_NAME} VERSION 1.1.2 LANGUAGES CXX)
project(${PACKAGE_NAME} VERSION 1.1.3 LANGUAGES CXX)
include(GNUInstallDirs)


Expand Down
2 changes: 1 addition & 1 deletion Champollion/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.2";
std::string version_string = "Champollion PEX decompiler v1.1.3";
options::options_description desc(version_string);
desc.add_options()
("help,h", "Display the help message")
Expand Down
2 changes: 1 addition & 1 deletion Decompiler/PscCoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"); // TODO: Make this get the version number dynamically
write(";/ Decompiled by Champollion V1.1.3"); // 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)
Expand Down
2 changes: 1 addition & 1 deletion Doc/Readme.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Champollion V1.1.2 Readme</title>
<title>Champollion V1.1.3 Readme</title>
<link rel="stylesheet" type="text/css" href="readme.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/master/docs/vcpkg.schema.json",
"name": "champollion",
"version-semver": "1.1.2",
"version-semver": "1.1.3",
"port-version": 0,
"description": "Papyrus Script Decompiler.",
"homepage": "https://github.com/Orvid/Champollion",
Expand Down

0 comments on commit 3765648

Please sign in to comment.