Skip to content

Commit bee34c9

Browse files
Change the recommended way of linking against EmacsSwiftModule
1 parent 5ee207a commit bee34c9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Full documentation of the package can be found here: https://savchenkovaleriy.gi
6868
Add the following line to you package dependencies:
6969

7070
```swift
71-
.package("https://github.com/SavchenkoValeriy/emacs-swift-module.git", from: "1.3.0")
71+
.package("https://github.com/SavchenkoValeriy/emacs-swift-module.git", from: "1.3.4")
7272
```
7373

7474
Or add `"https://github.com/SavchenkoValeriy/emacs-swift-module.git"` directly via Xcode.

Source/Swift/Documentation.docc/DefiningAModule.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Defining a new Emacs module from Swift.
99
Add the following line to you package dependencies:
1010

1111
```swift
12-
.package("https://github.com/SavchenkoValeriy/emacs-swift-module.git", from: "1.3.2")
12+
.package("https://github.com/SavchenkoValeriy/emacs-swift-module.git", from: "1.3.4")
1313
```
1414

1515
Or add `"https://github.com/SavchenkoValeriy/emacs-swift-module.git"` directly via Xcode.
@@ -26,13 +26,13 @@ products: [
2626
targets: ["AwesomeSwiftEmacsModule"]),
2727
],
2828
dependencies: [
29-
.package("https://github.com/SavchenkoValeriy/emacs-swift-module.git", from: "1.3.2")
29+
.package("https://github.com/SavchenkoValeriy/emacs-swift-module.git", from: "1.3.4")
3030
],
3131
targets: [
3232
.target(
3333
name: "AwesomeSwiftEmacsModule",
3434
dependencies: [
35-
.product(name: "EmacsSwiftModule", package: "emacs-swift-module")
35+
.product(name: "EmacsSwiftModuleDynamic", package: "emacs-swift-module")
3636
],
3737
plugins: [
3838
.plugin(name: "ModuleFactoryPlugin", package: "emacs-swift-module")

0 commit comments

Comments
 (0)