Skip to content

Commit 958650e

Browse files
committed
version 4.2.4
1 parent b69fb2e commit 958650e

File tree

12 files changed

+33
-33
lines changed

12 files changed

+33
-33
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.2.2
5+
module_version: 4.2.4
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.2.2
3+
VERSION = 4.2.4
44

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

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Add **SwiftyMocky** to you **Package.swift** dependencies:
122122

123123
```swift
124124
dependencies: [
125-
.package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.2.0"),
125+
.package(url: "https://github.com/MakeAWishFoundation/SwiftyMocky", from: "4.2.4"),
126126
]
127127
```
128128

@@ -385,15 +385,15 @@ SwiftyMocky is available under the MIT license. See the [LICENSE][link-license]
385385

386386
<!-- Links based on tag -->
387387

388-
[link-docs]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.0/docs/index.html
389-
[link-docs-features]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.0/docs/supported-features.html
390-
[link-docs-installation]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.0/docs/installation.html
391-
[link-docs-installation-carthage]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.0/docs/installation.html#installation-carthage
392-
[link-docs-setup]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.0/docs/setup-in-project.html
388+
[link-docs]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.4/docs/index.html
389+
[link-docs-features]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.4/docs/supported-features.html
390+
[link-docs-installation]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.4/docs/installation.html
391+
[link-docs-installation-carthage]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.4/docs/installation.html#installation-carthage
392+
[link-docs-setup]: https://rawcdn.githack.com/MakeAWishFoundation/SwiftyMocky/4.2.4/docs/setup-in-project.html
393393

394394
<!-- Assets -->
395395

396-
[logo]: https://raw.githubusercontent.com/MakeAWishFoundation/SwiftyMocky/4.2.0/icon.png
396+
[logo]: https://raw.githubusercontent.com/MakeAWishFoundation/SwiftyMocky/4.2.4/icon.png
397397
[example-watcher]: https://raw.githubusercontent.com/MakeAWishFoundation/SwiftyMocky/1.0.0/guides/assets/example-watcher.gif "Example - generation"
398398
[example-given]: https://raw.githubusercontent.com/MakeAWishFoundation/SwiftyMocky/1.0.0/guides/assets/example-given.gif "Example - given"
399399
[example-verify]: https://raw.githubusercontent.com/MakeAWishFoundation/SwiftyMocky/1.0.0/guides/assets/example-verify.gif "Example - verify"

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.2.2"
9+
public let version = "4.2.4"
1010
public var pwd = Path(ProcessInfo.processInfo.environment["PWD"] ?? "")
1111
public var handle: (Error) -> Void = { error in
1212
switch error {

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.2.2</string>
18+
<string>4.2.4</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

SwiftyMocky.podspec

Lines changed: 1 addition & 1 deletion
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.2.2'
3+
s.version = '4.2.4'
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.

SwiftyPrototype.podspec

Lines changed: 1 addition & 1 deletion
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.2.2'
3+
s.version = '4.2.4'
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.

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.2.0
1+
// Generated with SwiftyMocky 4.2.4
22
// Required Sourcery: 1.8.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.2.0
1+
// Generated with SwiftyPrototype 4.2.4
22
// Required Sourcery: 1.8.0
33

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

bin/swiftymocky

49.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)