Skip to content

Commit

Permalink
Fix #14: downgrade fabric8 from 7.0.1 to 6.13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorpergjoka committed Jan 8, 2025
1 parent 8fc7083 commit a159124
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## CHANGELOG

### 1.0.2 (2025-01-08)

#### Dependency Downgrade
* Fix #14: downgrade fabric8 from 7.0.1 to 6.13.4

### 1.0.1 (2025-01-08)

* Fix #11: implement cache for the events
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Maven:
<dependency>
<groupId>io.k8swatcher</groupId>
<artifactId>spring-k8swatcher</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
```
Expand All @@ -48,7 +48,7 @@ Gradle:

```
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'io.k8swatcher:spring-k8swatcher:1.0.1'
implementation 'io.k8swatcher:spring-k8swatcher:1.0.2'
```

Expand All @@ -60,7 +60,7 @@ Maven:
<dependency>
<groupId>io.k8swatcher</groupId>
<artifactId>spring-k8swatcher</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<exclusions>
<exclusion>
<groupId>io.fabric8</groupId>
Expand All @@ -74,7 +74,7 @@ Maven:
Gradle:

```
implementation ('io.k8swatcher:spring-k8swatcher:1.0.1'){
implementation ('io.k8swatcher:spring-k8swatcher:1.0.2'){
exclude group: 'io.fabric8', module: 'kubernetes-client'
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {


group = 'io.k8swatcher'
version = '1.0.1'
version = '1.0.2'


java {
Expand All @@ -39,7 +39,7 @@ dependencyManagement {
}

ext{
fabric8Version = '7.0.1'
fabric8Version = '6.13.4'
}

dependencies {
Expand Down

0 comments on commit a159124

Please sign in to comment.