Skip to content

Commit 7a91b54

Browse files
committed
Update SPM Swift demo to 3.7.5
1 parent 17ee7f9 commit 7a91b54

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

swift/Manual/spm/printer/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
],
1616
dependencies: [
1717
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.8.10"),
18-
.package(url: "https://github.com/zeroc-ice/ice-spm.git", "3.7.4" ..< "3.8.0")
18+
.package(url: "https://github.com/zeroc-ice/ice-spm.git", "3.7.5" ..< "3.8.0")
1919
],
2020
targets: [
2121
.target(name: "Client", dependencies: ["Ice", "PromiseKit"]),

swift/Manual/spm/printer/Sources/Client/Printer.swift

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Copyright (c) ZeroC, Inc. All rights reserved.
33
//
44
//
5-
// Ice version 3.7.4
5+
// Ice version 3.7.5
66
//
77
// <auto-generated>
88
//
@@ -27,9 +27,9 @@ public struct PrinterTraits: Ice.SliceTraits {
2727
///
2828
/// PrinterPrx Methods:
2929
///
30-
/// - printString:
30+
/// - printString:
3131
///
32-
/// - printStringAsync:
32+
/// - printStringAsync:
3333
public protocol PrinterPrx: Ice.ObjectPrx {}
3434

3535
private final class PrinterPrxI: Ice.ObjectPrxI, PrinterPrx {
@@ -109,9 +109,9 @@ public extension Ice.InputStream {
109109
///
110110
/// PrinterPrx Methods:
111111
///
112-
/// - printString:
112+
/// - printString:
113113
///
114-
/// - printStringAsync:
114+
/// - printStringAsync:
115115
public extension PrinterPrx {
116116
///
117117
/// - parameter _: `Swift.String`
@@ -153,6 +153,7 @@ public extension PrinterPrx {
153153
}
154154
}
155155

156+
156157
/// Dispatcher for `Printer` servants.
157158
public struct PrinterDisp: Ice.Disp {
158159
public let servant: Printer
@@ -193,7 +194,7 @@ public protocol Printer {
193194
///
194195
/// Printer Methods:
195196
///
196-
/// - printString:
197+
/// - printString:
197198
public extension Printer {
198199
func _iceD_printString(incoming inS: Ice.Incoming, current: Ice.Current) throws -> PromiseKit.Promise<Ice.OutputStream>? {
199200
let iceP_s: Swift.String = try inS.read { istr in

swift/Manual/spm/printer/Sources/Server/Printer.swift

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Copyright (c) ZeroC, Inc. All rights reserved.
33
//
44
//
5-
// Ice version 3.7.4
5+
// Ice version 3.7.5
66
//
77
// <auto-generated>
88
//
@@ -27,9 +27,9 @@ public struct PrinterTraits: Ice.SliceTraits {
2727
///
2828
/// PrinterPrx Methods:
2929
///
30-
/// - printString:
30+
/// - printString:
3131
///
32-
/// - printStringAsync:
32+
/// - printStringAsync:
3333
public protocol PrinterPrx: Ice.ObjectPrx {}
3434

3535
private final class PrinterPrxI: Ice.ObjectPrxI, PrinterPrx {
@@ -109,9 +109,9 @@ public extension Ice.InputStream {
109109
///
110110
/// PrinterPrx Methods:
111111
///
112-
/// - printString:
112+
/// - printString:
113113
///
114-
/// - printStringAsync:
114+
/// - printStringAsync:
115115
public extension PrinterPrx {
116116
///
117117
/// - parameter _: `Swift.String`
@@ -153,6 +153,7 @@ public extension PrinterPrx {
153153
}
154154
}
155155

156+
156157
/// Dispatcher for `Printer` servants.
157158
public struct PrinterDisp: Ice.Disp {
158159
public let servant: Printer
@@ -193,7 +194,7 @@ public protocol Printer {
193194
///
194195
/// Printer Methods:
195196
///
196-
/// - printString:
197+
/// - printString:
197198
public extension Printer {
198199
func _iceD_printString(incoming inS: Ice.Incoming, current: Ice.Current) throws -> PromiseKit.Promise<Ice.OutputStream>? {
199200
let iceP_s: Swift.String = try inS.read { istr in

0 commit comments

Comments
 (0)