Skip to content

Commit

Permalink
Bump version to 1.0.0. Fix a std header reference issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
blu3mania committed Mar 7, 2023
1 parent de1173f commit 55219bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/Plugin/Common/Resources.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define STR(X) STR_(X)

#define PLUGIN_NAME L"Papyrus"
#define MAJOR_VERSION 0
#define MINOR_VERSION 5
#define PATCH_VERSION 1
#define MAJOR_VERSION 1
#define MINOR_VERSION 0
#define PATCH_VERSION 0
#define BUILD_NUMBER 0 // This number will be replaced by build script
#define PLUGIN_VERSION STR(MAJOR_VERSION) L"." STR(MINOR_VERSION) L"." STR(PATCH_VERSION)

Expand Down
2 changes: 0 additions & 2 deletions src/Plugin/Common/StringUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

#include "StringUtil.hpp"

#include <algorithm>

namespace utility {

// String utilities
Expand Down
1 change: 1 addition & 0 deletions src/Plugin/Common/StringUtil.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

#pragma once

#include <algorithm>
#include <cwctype>
#include <format>
#include <sstream>
Expand Down

0 comments on commit 55219bb

Please sign in to comment.