Skip to content

Commit 7cfeecc

Browse files
committed
Deploy 4.1.0-pre
1 parent 8f9a004 commit 7cfeecc

File tree

140 files changed

+221
-221
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+221
-221
lines changed

.jazzy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ author: Przemysław Wośko, Andrzej Michnia
22
author_url: https://girappe.com
33
module: SwiftyMocky
44
sourcekitten_sourcefile: docs.json
5-
module_version: 4.1.0
5+
module_version: 4.1.0-pre
66
github_url: https://github.com/MakeAWishFoundation/SwiftyMocky
77
copyright: 'Copyright © 2017 MakeAWishFoundation. All rights reserved.'
88
readme: guides/Overview.md

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
EXECUTABLE_NAME = swiftymocky
22
REPO = https://github.com/MakeAWishFoundation/SwiftyMocky
3-
VERSION = 4.1.0
3+
VERSION = 4.1.0-pre
44

55
PREFIX = /usr/local
66
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)

Mintfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
MakeAWishFoundation/SwiftyMocky@4.1.0
1+
MakeAWishFoundation/SwiftyMocky@4.1.0-pre
22
krzysztofzablocki/Sourcery@1.6.0

README.md

Lines changed: 6 additions & 6 deletions

Sources/CLI/Core/Application.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class Application {
66

77
// MARK: - Properties
88

9-
public let version = "4.1.0"
9+
public let version = "4.1.0-pre"
1010
public var pwd = Path(ProcessInfo.processInfo.environment["PWD"] ?? "")
1111
public var handle: (Error) -> Void = { error in
1212
switch error {

Sources/SwiftyMocky/Mock.swifttemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func stringArray(fromArguments arguments: [String: Any], forKey key: String) ->
3737
}
3838
}
3939
_%>
40-
// Generated with SwiftyMocky 4.1.0
40+
// Generated with SwiftyMocky 4.1.0-pre
4141
// Required Sourcery: 1.6.0
4242

4343
<%_ for rule in swiftLintRules(argument) { -%>

Sources/SwiftyPrototype/Prototype.swifttemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func stringArray(fromArguments arguments: [String: Any], forKey key: String) ->
3737
}
3838
}
3939
_%>
40-
// Generated with SwiftyPrototype 4.1.0
40+
// Generated with SwiftyPrototype 4.1.0-pre
4141
// Required Sourcery: 1.6.0
4242

4343
<%_ for rule in swiftLintRules(argument) { -%>

SwiftyMocky-Runtime/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.1.0</string>
18+
<string>4.1.0-pre</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

SwiftyMocky-Tests/Shared/Other/VerifyMessagesTests.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ class VerifyMessagesTests: XCTestCase {
109109
Given(mock, .decode(.value(DecodableType.self), from: .any, willReturn: DecodableType(id: 1)))
110110
Given(mock, .decode(.value(OtherType.self), from: .any, willReturn: OtherType(id: 2)))
111111

112-
let data1 = Data(bytes: [1,1,1,1])
113-
let data2 = Data(bytes: [2,2,2,2])
114-
let data3 = Data(bytes: [3,3,3,3])
115-
let data4 = Data(bytes: [4,4,4,4])
112+
let data1 = Data([1,1,1,1])
113+
let data2 = Data([2,2,2,2])
114+
let data3 = Data([3,3,3,3])
115+
let data4 = Data([4,4,4,4])
116116

117117
_ = mock.decode(DecodableType.self, from: data1)
118118
_ = mock.decode(DecodableType.self, from: data2)

SwiftyMocky-Tests/iOS/Mocks/Mock.generated.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// DO NOT EDIT
33

44

5-
// Generated with SwiftyMocky 4.1.0
5+
// Generated with SwiftyMocky 4.1.0-pre
66
// Required Sourcery: 1.6.0
77

88

SwiftyMocky-Tests/macOS/Mocks/Mock.generated.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// DO NOT EDIT
33

44

5-
// Generated with SwiftyMocky 4.1.0
5+
// Generated with SwiftyMocky 4.1.0-pre
66
// Required Sourcery: 1.6.0
77

88

SwiftyMocky-Tests/tvOS/Mocks/Mock.generated.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// DO NOT EDIT
33

44

5-
// Generated with SwiftyMocky 4.1.0
5+
// Generated with SwiftyMocky 4.1.0-pre
66
// Required Sourcery: 1.6.0
77

88

SwiftyMocky.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftyMocky'
3-
s.version = '4.1.0'
3+
s.version = '4.1.0-pre'
44
s.summary = 'Unit testing library for Swift, with mock generation. Adds a set of handy methods, simplifying testing.'
55
s.description = <<-DESC
66
Library that uses metaprogramming technique to generate mocks based on sources, that makes testing for Swift Mockito-like.
@@ -12,7 +12,7 @@ Library that uses metaprogramming technique to generate mocks based on sources,
1212
s.author = { 'Przemysław Wośko' => 'przemyslaw.wosko@intive.com', 'Andrzej Michnia' => 'amichnia@gmail.com' }
1313
s.source = { :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => s.version.to_s }
1414

15-
s.swift_versions = ['4.1', '4.2', '5.0', '5.1.2', '5.5']
15+
s.swift_versions = ['5.0', '5.1.2', '5.5']
1616
s.ios.deployment_target = '9.0'
1717
s.tvos.deployment_target = '9.0'
1818
s.macos.deployment_target = '10.10'

SwiftyPrototype.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftyPrototype'
3-
s.version = '4.1.0'
3+
s.version = '4.1.0-pre'
44
s.summary = 'Prototyping/Faking library for Swift, with code generation. Auto-generates fakes/prototypes based on protocol definitions.'
55
s.description = <<-DESC
66
Library that uses metaprogramming technique to generate fakes/prototypes based on sources, makin it easier to prototype app.
@@ -12,7 +12,7 @@ Library that uses metaprogramming technique to generate fakes/prototypes based o
1212
s.author = { 'Przemysław Wośko' => 'przemyslaw.wosko@intive.com', 'Andrzej Michnia' => 'amichnia@gmail.com' }
1313
s.source = { :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => s.version.to_s }
1414

15-
s.swift_versions = ['4.1', '4.2', '5.0', '5.1.2']
15+
s.swift_versions = ['5.0', '5.1.2', '5.5']
1616
s.ios.deployment_target = '9.0'
1717
s.tvos.deployment_target = '9.0'
1818
s.macos.deployment_target = '10.10'

Templates/Header-Mock.swifttemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated with SwiftyMocky 4.1.0
1+
// Generated with SwiftyMocky 4.1.0-pre
22
// Required Sourcery: 1.6.0
33

44
<%_ for rule in swiftLintRules(argument) { -%>

Templates/Header-Prototype.swifttemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated with SwiftyPrototype 4.1.0
1+
// Generated with SwiftyPrototype 4.1.0-pre
22
// Required Sourcery: 1.6.0
33

44
<%_ for rule in swiftLintRules(argument) { -%>

Tests/SwiftyMockyCLICoreTests/Mock.generated.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// DO NOT EDIT
33

44

5-
// Generated with SwiftyMocky 4.1.0
5+
// Generated with SwiftyMocky 4.1.0-pre
66
// Required Sourcery: 1.6.0
77

88

Tests/SwiftyMockyTests/Mock.generated.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// DO NOT EDIT
33

44

5-
// Generated with SwiftyMocky 4.1.0
5+
// Generated with SwiftyMocky 4.1.0-pre
66
// Required Sourcery: 1.6.0
77

88

bin/swiftymocky

0 Bytes
Binary file not shown.

docs/Additional Guides.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Additional Guides Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Classes/ArgumentCaptor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="ArgumentCaptor Class Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Classes/Matcher.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Matcher Class Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Classes/Matcher/ComparisonResult.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="ComparisonResult Structure Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Classes/Matcher/ParameterComparisonResult.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="ParameterComparisonResult Structure Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Classes/MockyAssertion.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="MockyAssertion Class Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Classes/StubbedMethod.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="StubbedMethod Class Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Classes/SwiftyMockyTestObserver.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="SwiftyMockyTestObserver Class Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Configuration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Configuration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Enums/Count.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Count Enumeration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Enums/MockError.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="MockError Enumeration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Enums/MockScope.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="MockScope Enumeration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Enums/Parameter.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Parameter Enumeration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Enums/SequencingPolicy.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="SequencingPolicy Enumeration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Enums/StubProduct.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="StubProduct Enumeration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Enums/StubbingPolicy.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="StubbingPolicy Enumeration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Enums/Utils.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Utils Enumeration Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Extensions/Int.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Int Extension Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Extensions/Optional.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Optional Extension Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Extensions/UInt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="UInt Extension Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="../index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="../index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="../img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Generics.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Generics Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Global methods.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Global methods Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

docs/Helpers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<a title="Helpers Reference"></a>
1515
<header>
1616
<div class="content-wrapper">
17-
<p><a href="index.html">SwiftyMocky 4.1.0 Docs</a> (86% documented)</p>
17+
<p><a href="index.html">SwiftyMocky 4.1.0-pre Docs</a> (86% documented)</p>
1818
<p class="header-right"><a href="https://github.com/MakeAWishFoundation/SwiftyMocky"><img src="img/gh.png"/>View on GitHub</a></p>
1919
</div>
2020
</header>

0 commit comments

Comments
 (0)