Skip to content

Commit

Permalink
tag for release 1.11.0, explicitly specify versions for mvn clients
Browse files Browse the repository at this point in the history
  • Loading branch information
fastily committed Jun 10, 2023
1 parent b31a4be commit 22167c5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Not convinced? Try out the [examples](https://github.com/fastily/jwiki/wiki/Exa
<dependency>
<groupId>io.github.fastily</groupId>
<artifactId>jwiki</artifactId>
<version>1.10.0</version>
<version>1.11.0</version>
</dependency>
```

#### Gradle
```groovy
implementation 'io.github.fastily:jwiki:1.10.0'
implementation 'io.github.fastily:jwiki:1.11.0'
```

⚠️ COORDINATES HAVE CHANGED (since 1.10.0): jwiki's new group id is `io.github.fastily`
Expand Down
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ plugins {

description="${project.name} build script"
group="io.github.fastily"
version="1.10.0"
version="1.11.0"

repositories {
mavenCentral()
}

dependencies {
api "com.google.code.gson:gson:2.10.+"
api "com.squareup.okhttp3:okhttp:4.11.+"
api "com.squareup.okhttp3:okhttp-urlconnection:4.11.+"
api 'org.slf4j:slf4j-api:2.0.+'
api "com.google.code.gson:gson:2.10.1"
api "com.squareup.okhttp3:okhttp:4.11.0"
api "com.squareup.okhttp3:okhttp-urlconnection:4.11.0"
api 'org.slf4j:slf4j-api:2.0.7'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.+'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.+'

testImplementation "com.squareup.okhttp3:mockwebserver:4.11.+"
testImplementation 'org.slf4j:slf4j-reload4j:2.0.+'
testImplementation 'org.apache.logging.log4j:log4j-api:2.20.+'
testImplementation "com.squareup.okhttp3:mockwebserver:4.11.0"
testImplementation 'org.slf4j:slf4j-reload4j:2.0.7'
testImplementation 'org.apache.logging.log4j:log4j-api:2.20.0'
}


Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/github/fastily/jwiki/test/QueryTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public void testWhatTranscludesHere()
* Tests external link fetching.
*/
@Test
@Disabled("Regression on testwiki - 1.41.0-wmf.10") // TODO - revisit
@Disabled("Regression on testwiki - https://phabricator.wikimedia.org/T337994") // TODO - revisit
public void testGetExternalLinks()
{
ArrayList<String> l = wiki.getExternalLinks("User:Fastily/Sandbox/ExternalLink");
Expand Down

0 comments on commit 22167c5

Please sign in to comment.