Releasing 0.3.12

This commit is contained in:
Arthur Guiot
2023-09-23 16:35:53 -07:00
parent 6cf9675a56
commit f54c76e1cc
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Euler"
s.version = "0.3.11"
s.version = "0.3.12"
s.summary = "The open source computational framework for the Swift language (early stage)"
s.description = <<-DESC
The open source computational framework for the Swift language (early stage)
+3 -3
View File
@@ -13,7 +13,7 @@ You can use the following options to install Euler, but we recommend using Cocoa
[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate Euler into your Xcode project using CocoaPods, specify it in your `Podfile`:
```ruby
pod 'Euler', '~> 0.3.11'
pod 'Euler', '~> 0.3.12'
```
### Carthage
@@ -21,7 +21,7 @@ pod 'Euler', '~> 0.3.11'
[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate Euler into your Xcode project using Carthage, specify it in your `Cartfile`:
```ogdl
github "arguiot/Euler" ~> 0.3.11
github "arguiot/Euler" ~> 0.3.12
```
### Swift Package Manager
@@ -32,7 +32,7 @@ Once you have your Swift package set up, adding Euler as a dependency is as easy
```swift
dependencies: [
.package(url: "https://github.com/arguiot/Euler.git", .upToNextMajor(from: "0.3.11"))
.package(url: "https://github.com/arguiot/Euler.git", .upToNextMajor(from: "0.3.12"))
]
```