Skip to content

Commit b235133

Browse files
authored
Merge pull request #7 from amadeus4dev/version_1.0.1
fix documentation typos and publish a new version with signed jar
2 parents 2e8e7fd + cdcd568 commit b235133

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.github/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ To run the project locally, clone the repository and install the dependencies.
55
```
66
git clone https://github.com/amadeusdev/amadeus-java.git
77
cd amadeus-java
8-
bundle
8+
gradle
99
```
1010

1111
Make sure you have Gradle installed as well.
@@ -18,20 +18,20 @@ For example, for InteliJ follow [these instructions](https://projectlombok.org/s
1818

1919
### Running tests
2020

21-
To run tests, simply run `./gradlew tests`.
21+
To run tests, simply run `./gradlew test`
2222

2323
We are trying to keep 100% coverage, so keep an eye on the `coverage` folder for an overview of the coverage.
2424

2525
### Building
2626

27-
To build the jar run `./gradlew clean build`.
27+
To build the jar run `./gradlew clean build`
2828

2929
### Using a library locally
3030

3131
To use a library locally as a dependency, simply link to this library in your Gradle project by path:
3232

3333
```js
34-
compile files('/path/to/libs/amadeus-java-1.0.0-SNAPSHOT.jar')
34+
compile files('/path/to/libs/amadeus-java-1.0.1-SNAPSHOT.jar')
3535
```
3636

3737
### Releasing

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,14 @@ You can install the SDK via Maven or Gradle.
3434
<dependency>
3535
<groupId>com.amadeus</groupId>
3636
<artifactId>amadeus-java</artifactId>
37-
<version>1.0.0</version>
37+
<version>1.0.1</version>
3838
</dependency>
3939
```
4040
#### Gradle
4141
```js
42-
compile "com.amadeus:amadeus-java:1.0.0"
42+
compile "com.amadeus:amadeus-java:1.0.1"
4343
```
44+
4445
## Getting Started
4546

4647
To send make your first API call you will need to [register for an Amadeus

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.amadeus
2-
VERSION_NAME=1.0.0
2+
VERSION_NAME=1.0.1
33

44
POM_URL=https://github.com/amadeus4dev/amadeus-java
55
POM_SCM_URL[email protected]:amadeus4dev/amadeus-java.git

src/main/java/com/amadeus/Amadeus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class Amadeus extends HTTPClient {
2020
/**
2121
* The API version.
2222
*/
23-
public static final String VERSION = "1.0.0";
23+
public static final String VERSION = "1.0.1";
2424

2525
/**
2626
* <p>

src/test/java/com/amadeus/AmadeusTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public void testBuilderWithInvalidEnvironment() {
4949
}
5050

5151
@Test public void testVersion() {
52-
assertEquals("should have a version number", Amadeus.VERSION, "1.0.0");
52+
assertEquals("should have a version number", Amadeus.VERSION, "1.0.1");
5353
}
5454

5555
}

0 commit comments

Comments
 (0)