Skip to content

Commit 80a4059

Browse files
committed
version 3.5 (next release)
1 parent ceb8d50 commit 80a4059

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ipp-client v3.4
1+
# ipp-client v3.5
22

33
A client implementation of the ipp protocol for java and kotlin.
44
RFCs
@@ -23,7 +23,7 @@ supports printer lookup by queue name.
2323
Repository [ipp-samples](https://github.com/gmuth/ipp-samples) contains examples how to use jmDNS.
2424

2525
```
26-
implementation("de.gmuth:ipp-client:3.4")
26+
implementation("de.gmuth:ipp-client:3.5")
2727
```
2828

2929
[README.md for version 2.x](https://github.com/gmuth/ipp-client-kotlin/blob/2.5/README.md) is still available.

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020
}
2121

2222
group = "de.gmuth"
23-
version = "3.4"
23+
version = "3.5"
2424

2525
repositories {
2626
mavenCentral()

src/main/kotlin/de/gmuth/ipp/client/IppConfig.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package de.gmuth.ipp.client
22

33
/**
4-
* Copyright (c) 2021-2024 Gerhard Muth
4+
* Copyright (c) 2021-2025 Gerhard Muth
55
*/
66

77
import java.nio.charset.Charset
@@ -23,7 +23,7 @@ class IppConfig(
2323

2424
// HTTP config
2525
var timeout: Duration = Duration.ofSeconds(30),
26-
var userAgent: String? = "ipp-client/3.4",
26+
var userAgent: String? = "ipp-client/3.5",
2727
var password: String? = null,
2828
var sslContext: SSLContext? = null,
2929
// trust any certificate: sslContextForAnyCertificate()

0 commit comments

Comments
 (0)