Skip to content

Commit

Permalink
Merge pull request #19 from RavenCommunity/fullport
Browse files Browse the repository at this point in the history
Allow full port range, bump version
  • Loading branch information
traysi authored May 4, 2020
2 parents 753c9c0 + 18a788c commit 0471041
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version =1.2.1
current_version =1.2.2
commit = True
message = kawpowminer {new_version}

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ HunterGate(
)

project(kawpowminer)
set(PROJECT_VERSION 1.2.1)
set(PROJECT_VERSION 1.2.2)

cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release RelWithDebInfo)

Expand Down
2 changes: 1 addition & 1 deletion libpoolprotocols/PoolURI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ URI::URI(std::string uri, bool _sim) : m_uri{std::move(uri)}
if (std::regex_search(m_hostinfo, matches, host_pattern, std::regex_constants::match_default))
{
m_host = matches[1].str();
m_port = boost::lexical_cast<short>(matches[2].str());
m_port = boost::lexical_cast<unsigned short>(matches[2].str());
}
else
{
Expand Down

0 comments on commit 0471041

Please sign in to comment.