Skip to content

Commit

Permalink
Raise versions to 3.2.4 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcolegate authored and sjanuary committed Oct 9, 2017
1 parent 694e1ad commit 919d63a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ This project uses a semver-parsable X.0.Z version number for releases, where X i
Non-release versions of this project (for example on github.com/RuntimeTools/omr-agentcore) will use semver-parsable X.0.Z-dev.B version numbers, where X.0.Z is the last release with Z incremented and B is an integer. For further information on the development process go to the [appmetrics wiki][3]: [Developing](https://github.com/RuntimeTools/appmetrics/wiki/Developing).

## Version
3.2.2
3.2.4

## Release History
`3.2.4` - Node on z/OS support.
`3.2.3` - Swift 4 support.
`3.2.2` - Fix compiler issues on vs2010.
`3.2.1` - Bug fixes.
`3.2.0` - New API to add plugins, various bug fixes.
Expand Down
2 changes: 1 addition & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# "externalbinariesdir%": "<(PRODUCT_DIR)/deploy/external/binaries",
"externalbinariesdir%": "./plugins",
'build_id%': '.<!(["python", "./generate_build_id.py"])',
'coreversion%': '3.2.2',
'coreversion%': '3.2.4',
"conditions": [
['OS=="aix"', {
"portdir": "aix",
Expand Down
7 changes: 3 additions & 4 deletions src/ibmras/monitoring/agent/Agent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ std::string Agent::getBuildDate() {
}

std::string Agent::getVersion() {
return "3.2.2";
return "3.2.4";
}

void Agent::setLogLevels() {
Expand Down Expand Up @@ -298,7 +298,7 @@ const char* getPropertyImpl(const char * key){
//WE CAN EXPOSE THIS IN THE FUTURE IF WE WANT TO, SO THE PLUGINS CAN ALSO SET PROPERTIES
//--------------------------------------------------------------------------------------
void setPropertyImpl(const char* key, const char* value) {

Agent::getInstance()->setProperty(key, value);

}
Expand Down Expand Up @@ -612,7 +612,7 @@ void Agent::startReceivers() {
connectionManager.addReceiver(receiver);
}
} else if ((*i)->receiveMessage) {
ibmras::monitoring::connector::Receiver* receiver =
ibmras::monitoring::connector::Receiver* receiver =
new ibmras::monitoring::AgentExtensionReceiver((*i)->receiveMessage);
if (receiver) {
IBMRAS_DEBUG_1(info, "Add extension receiver %s to connector manager",
Expand Down Expand Up @@ -784,4 +784,3 @@ bool Agent::loadPropertiesFile(const char* filestr){
}
}
} /* end namespace monitoring */

0 comments on commit 919d63a

Please sign in to comment.