Skip to content

Commit

Permalink
v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jwagenleitner committed Jul 28, 2012
1 parent 42c7de2 commit 3f39235
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.7.1 (2012-07-28)

* Fix [When given a 204 (No Content) response, there's a fatal error] (/jwagenleitner/groovy-wslite/issues/43)

## 0.7.0 (2012-04-02)

* Fix [setSoapActionHeaderIfNotPresent treats the empty string same as null] (/jwagenleitner/groovy-wslite/issues/39)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ breaking changes.
### Example

``` groovy
@Grab(group='com.github.groovy-wslite', module='groovy-wslite', version='0.7.0')
@Grab(group='com.github.groovy-wslite', module='groovy-wslite', version='0.7.1')
import wslite.soap.*
def client = new SOAPClient('http://www.holidaywebservice.com/Holidays/US/Dates/USHolidayDates.asmx')
Expand Down Expand Up @@ -240,7 +240,7 @@ Authenticator.setDefault(new Authenticator() {
### Example

``` groovy
@Grab(group='com.github.groovy-wslite', module='groovy-wslite', version='0.7.0')
@Grab(group='com.github.groovy-wslite', module='groovy-wslite', version='0.7.1')
import wslite.rest.*
def client = new RESTClient("http://api.twitter.com/1/")
Expand Down Expand Up @@ -427,7 +427,7 @@ __groovy-wslite__ is available in Maven Central.
<dependency>
<groupId>com.github.groovy-wslite</groupId>
<artifactId>groovy-wslite</artifactId>
<version>0.7.0</version>
<version>0.7.1</version>
</dependency>

#### Snapshots
Expand All @@ -451,7 +451,7 @@ __groovy-wslite__ is available in Maven Central.

#### Releases

@Grab(group='com.github.groovy-wslite', module='groovy-wslite', version='0.7.0')
@Grab(group='com.github.groovy-wslite', module='groovy-wslite', version='0.7.1')

#### Snapshots

Expand All @@ -477,7 +477,7 @@ The SOAP/RESTClients can easily be configured and used in your Grails applicatio
//mavenRepo "https://oss.sonatype.org/content/groups/public"
}
dependencies {
runtime 'com.github.groovy-wslite:groovy-wslite:0.7.0'
runtime 'com.github.groovy-wslite:groovy-wslite:0.7.1'
}
}

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

version = '1.0.0-SNAPSHOT'
version = '0.7.1'
group = 'com.github.groovy-wslite'

sourceCompatibility = 1.5
Expand Down

0 comments on commit 3f39235

Please sign in to comment.