Skip to content

Commit

Permalink
Version Bump v4.4.1: Package not uploaded correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed May 20, 2019
1 parent ba5464b commit 7d83dc3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## [4.4.1] - 2019-05-20
### Fix
- 4.4.0 release not deployed properly to Maven

## [4.4.0] - 2019-05-20
### Added
- [PR #500](https://github.com/sendgrid/sendgrid-java/pull/500/files): Update CONTRIBUTING.md - using gitflow workflow, development branch instead of master -- BIG thanks to [Alex](https://github.com/pushkyn)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ touch Example.java
Add the example you want to test to Example.java, including the headers at the top of the file.

``` bash
javac -classpath ../repo/com/sendgrid/4.4.0/sendgrid-4.4.0-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.4.0/sendgrid-4.4.0-jar.jar:. Example
javac -classpath ../repo/com/sendgrid/4.4.1/sendgrid-4.4.1-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.4.1/sendgrid-4.4.1-jar.jar:. Example
```

<a name="understanding-the-codebase"></a>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Add the following to your build.gradle file in the root of your project.
...
dependencies {
...
implementation 'com.sendgrid:sendgrid-java:4.4.0'
implementation 'com.sendgrid:sendgrid-java:4.4.1'
}
repositories {
Expand All @@ -86,7 +86,7 @@ mvn install

You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.

[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/v4.4.0/sendgrid-java.jar)
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/v4.4.1/sendgrid-java.jar)

## Dependencies

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: 'maven'
apply plugin: 'signing'

group = 'com.sendgrid'
version = '4.4.0'
version = '4.4.1'
ext.packaging = 'jar'

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<groupId>com.sendgrid</groupId>
<artifactId>sendgrid-java</artifactId>
<name>Twilio SendGrid Java helper library</name>
<version>4.4.0</version>
<version>4.4.1</version>
<description>This Java module allows you to quickly and easily send emails through Twilio SendGrid using Java.</description>
<url>https://github.com/sendgrid/sendgrid-java</url>
<licenses>
Expand Down

0 comments on commit 7d83dc3

Please sign in to comment.