Skip to content

Commit

Permalink
Update version 2.0.2 -> 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Apr 20, 2023
1 parent 80bdfe4 commit e76dbea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 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 = 2.0.2
current_version = 2.0.3
commit = True
message = Update version {current_version} -> {new_version}

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Merative Annotator for Clinical Data Java SDK Version 2.0.2
# Merative Annotator for Clinical Data Java SDK Version 2.0.3

## Overview

Expand All @@ -16,7 +16,7 @@ This Java SDK allows developers to programmatically interact with the following
* Java 8 or above.

## Installation
The current version of this SDK is: 2.0.2
The current version of this SDK is: 2.0.3

#### Parent Project (Option 1)
To define a dependency on the parent project `acd-sdk`, use a dependency like these:
Expand All @@ -27,14 +27,14 @@ To define a dependency on the parent project `acd-sdk`, use a dependency like th
<dependency>
<groupId>com.merative.acd</groupId>
<artifactId>acd-sdk</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>
</dependency>
```

##### Gradle

```gradle
'com.merative.acd:acd-sdk:2.0.2'
'com.merative.acd:acd-sdk:2.0.3'
```

#### Annotator for Clinical Data Subproject (Option 2)
Expand All @@ -46,21 +46,21 @@ To define a dependency on the subproject `annotator-for-clinical-data`, use a de
<dependency>
<groupId>com.merative.acd</groupId>
<artifactId>annotator-for-clinical-data</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>
</dependency>
```

##### Gradle
```gradle
'com.merative.acd:2.0.2'
'com.merative.acd:2.0.3'
```
The artifact ID is listed in the table above.

## Migrating from version 1.x.x

The 2.0 release of the Annotator for Clinical Data Java SDK introduces a Java package name change from `com.ibm.watson.health.acd.v1` to `com.merative.acd.v1`. For the migration from 1.x.x:

1. Update the Maven dependencies by changing all `acd-sdk` or `annotator-for-clinical-data` dependency version tags to `2.0.2` in the pom.xml. Verify that there are no SDK module dependencies in the pom.xml with a version earlier than `2.0.2`.
1. Update the Maven dependencies by changing all `acd-sdk` or `annotator-for-clinical-data` dependency version tags to `2.0.3` in the pom.xml. Verify that there are no SDK module dependencies in the pom.xml with a version earlier than `2.0.3`.
2. In your application files, update any import declarations from `com.ibm.watson.health.acd.v1` to `com.merative.acd.v1`.

## Using the SDK
Expand Down

0 comments on commit e76dbea

Please sign in to comment.