-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from MrCreosote/develop
Fix the release notes and version
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,12 +30,15 @@ | |
*/ | ||
public class UserProfileServer extends JsonServerServlet { | ||
private static final long serialVersionUID = 1L; | ||
private static final String version = "0.2.0"; | ||
private static final String gitUrl = "[email protected]:kbase/user_profile"; | ||
private static final String gitCommitHash = "28d01844f1e20012708bf6ce4c66db4ac1f5778f"; | ||
private static final String version = "0.2.1"; | ||
private static final String gitUrl = "https://github.com/kbase/user_profile"; | ||
// the git commmit hash hasn't been updated in 2 years as of 3/1/19 and there doesn't appear | ||
// to be a mechanism to update it correctly, as it needs to be SDK compiled from the | ||
// current commit and then built into a server. Any checked in commit must be wrong. | ||
private static final String gitCommitHash = ""; | ||
|
||
//BEGIN_CLASS_HEADER | ||
public static final String VERSION = "0.2.0"; | ||
public static final String VERSION = "0.2.1"; | ||
|
||
public static final String SYS_PROP_KB_DEPLOYMENT_CONFIG = "KB_DEPLOYMENT_CONFIG"; | ||
public static final String SERVICE_DEPLOYMENT_NAME = "UserProfile"; | ||
|