Swiftpack.co - Swift Packages by sersoft-gmbh

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.

Packages published by sersoft-gmbh

sersoft-gmbh/swift-smtp 2.7.0
An SMTP sender implementation in Swift using Swift NIO
⭐️ 26
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v2.7.0
8 weeks ago
- Add Swift 5.8 support **Full Changelog**: https://github.com/sersoft-gmbh/swift-smtp/compare/2.6.0...2.7.0
v2.6.0
34 weeks ago
- Update Swift NIO - Fix Deprecations - Conform `Email` to `Equatable` **Full Changelog**: https://github.com/sersoft-gmbh/swift-smtp/compare/2.5.0...2.6.0
v2.5.0
37 weeks ago
* Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/swift-smtp/compare/2.4.0...2.5.0
v2.4.0
1 year ago
- Add support for Swift 5.6 **Full Changelog**: https://github.com/sersoft-gmbh/swift-smtp/compare/2.3.0...2.4.0
v2.3.0
1 year ago
- Add Swift 5.5 support - Update dependencies & fix deprecations (Version 2.14.0+ is now required for NIOSSL)
v2.2.0
2 years ago
- Add Swift 5.4 support
v2.1.0
2 years ago
This release contains the following new features: - Add ESMTP support (currently by sending `EHLO` instead of `HELO`). - Make the connection limit configurable in `SwiftSMTPVapor`.
v2.0.0
2 years ago
# Version 2.0.0 This is the final version 2.0.0 that adds support for Vapor 4 and NIO 2.0. Please note that the package was renamed from SwiftSMTP. GitHub will continue to redirect from the old name from some time, but you should update your package dependency declaration to the following: ```swift .package(url: "https://github.com/sersoft-gmbh/swift-smtp.git", from: "2.0.0"), ```
v2.0 RC-3
3 years ago
This is the third release candidate for a version 2.0 of SwiftSMTP which supports NIO 2.0 and Vapor 4.0. What's new since RC 2: **Core** - `Configuration` can now be created (completely or in part) from environment variables using `fromEnvironment()`. **Vapor** - The inlinable APIs were cleaned up. **Note:** Version 2.0 is currently being refined and made ready for release. Up until then there might still be SemVer-Major (breaking) changes.
v2.0 RC-2
3 years ago
This is the second release candidate for a version 2.0 of SwiftSMTP which supports NIO 2.0 and Vapor 4.0. What's new since RC 1: **Core** - The `connectionTimeOut` parameter has been moved from `Mailer` to `Configuration`. - A typo in `transmissionLogger` has been fixed in `Mailer`. - `Email.Attachment` has a convenience initializer which takes a `ByteBuffer` (from NIO) as `content`. **Vapor** - The vapor support layer has been completely refactored and simplified. Instead of creating a `Mailer` per `EventLoop` of the application's `EventLoopGroup`, one shared mailer is now (lazily) created. This means wherever you have access to an `Application`, you can get your hands on a `Mailer`. - Also, `Application.SwiftSMTP` has now a method to create a completely new `Mailer`. However, the caller of this method is responsible for keeping the new mailer alive and cleaning up afterwards. - The source of the `EventLoopGroup` of the shared mailer is configurable. By default, the application's `EventLoopGroup` is used. **Note:** Version 2.0 is currently being refined and made ready for release. Up until then there might still be SemVer-Major (breaking) changes.
macOS
sersoft-gmbh/color-components 1.10.0
A color component calculation library
⭐️ 11
🕓 2 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.10.0
2 weeks ago
## What's Changed * Add HSL / HSLA color components. * Add HSV / HSVA aliases for HSB / HSBA. **Full Changelog**: https://github.com/sersoft-gmbh/color-components/compare/1.9.0...1.10.0
v1.9.0
8 weeks ago
## What's Changed - Add Swift 5.8 support. **Full Changelog**: https://github.com/sersoft-gmbh/color-components/compare/1.8.0...1.9.0
v1.8.0
37 weeks ago
## What's Changed * Add support for Swift 5.7 * Build and run tests on watchOS **Full Changelog**: https://github.com/sersoft-gmbh/color-components/compare/1.7.0...1.8.0
v1.7.0
1 year ago
## What's Changed * Add support for Swift 5.6 * Drop support for Swift pre 5.5 * Improve performance of single most prominent color calculation **Full Changelog**: https://github.com/sersoft-gmbh/color-components/compare/1.6.0...1.7.0
v1.5.0
2 years ago
- Add Swift 5.4 support
v1.4.0
2 years ago
- Add overloads to use hex values (`init(hexString:)`, `init(hex:)`, `hexString()` and `hexValue()`) also with floating point types on RGB/A - Add `hexValue` on RGB/A that returns the hex value as an integer (e.g. `RGB<UInt8>(red: 0xAB, green: 0x34, blue: 0xD3).hexValue(as: UInt64)` returns `0xAB34D3` as `UInt64`)
v1.3.0
2 years ago
- Add feature to color calculations for calculating `prominentColors` (as well as an accessor for the `mostProminentColor`).
v1.2.0
2 years ago
- Add more convenience conversions between floating point and integer components. - Add hex string initializer for RGB. - Add overload of hex initializer with differently sized integer, e.g. to allow `RGBA<UInt8>` to be created from hex (w/o overflowing).
v1.1.1
2 years ago
- Only create one `CIContext` per `ImageColorsCalculator`.
v1.1.0
2 years ago
- Adds a new library `ColorCalculations` with a `ImageColorsCalculator` that uses `CoreImage` to extract various colors from images.
sersoft-gmbh/swift-sysctl 1.6.0
A Swift interface for `sysctl`
⭐️ 5
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.6.0
8 weeks ago
## What's Changed - Add Swift 5.8 support **Full Changelog**: https://github.com/sersoft-gmbh/swift-sysctl/compare/1.5.0...1.6.0
v1.5.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/swift-sysctl/compare/1.4.0...1.5.0
v1.4.0
1 year ago
## What's Changed * Add support for Swift 5.6 * Drop support for Swift pre 5.5 **Full Changelog**: https://github.com/sersoft-gmbh/swift-sysctl/compare/1.3.0...1.4.0
v1.2.0
2 years ago
- Add a few more parameters (#4) - Internal cleanup and improvements
v1.1.0
2 years ago
- Add Swift 5.4 support
v1.0.0
2 years ago
Initial release
sersoft-gmbh/apple-device-information 1.6.0
Contains a collection of device identifiers of apple devices
⭐️ 4
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.6.0
8 weeks ago
## What's Changed - Add Swift 5.8 support. **Full Changelog**: https://github.com/sersoft-gmbh/apple-device-information/compare/1.5.0...1.6.0
v1.5.0
14 weeks ago
## What's Changed - Add various new device identifiers. **Full Changelog**: https://github.com/sersoft-gmbh/apple-device-information/compare/1.4.0...1.5.0
v1.4.0
1 year ago
## What's Changed * Add support for Swift 5.6 * Drop support for Swift pre 5.5 * Add new device identifiers * Add new OS names **Full Changelog**: https://github.com/sersoft-gmbh/apple-device-information/compare/1.3.0...1.4.0
v1.1.0
2 years ago
- Add Swift 5.4 support
v1.0.3
2 years ago
- Fix OS name on macCatalyst
v1.0.2
2 years ago
- Fix device identifier on macCatalyst
v1.0.1
2 years ago
- Fix check if SwiftUI is available (we also need to check Combine).
v1.0.0
2 years ago
Initial Release
sersoft-gmbh/semver 3.5.1
A Swift implementation of a semantic Version as described at semver.org
⭐️ 4
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v3.5.1
8 weeks ago
## What's Changed - Fix build on Swift 5.6 **Full Changelog**: https://github.com/sersoft-gmbh/semver/compare/3.5.0...3.5.1
v3.5.0
8 weeks ago
## What's Changed - Add Swift 5.8 support - Improve parsing performance if modern regex support is available. **Full Changelog**: https://github.com/sersoft-gmbh/semver/compare/3.4.0...3.5.0
v3.4.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/semver/compare/3.3.1...3.4.0
v3.3.1
1 year ago
- Remove Swift 5.3 and 5.4 support to fix test builds
v3.3.0
1 year ago
- Add Swift 5.6 support - Add explicit Sendable conformance for Swift 5.5 **Full Changelog**: https://github.com/sersoft-gmbh/semver/compare/3.2.0...3.3.0
v3.1.0
2 years ago
- Add support for Swift 5.4
v3.0.1
2 years ago
- Add some enum case descriptions - Freeze formatting options struct - Internal documentation
v3.0.0
2 years ago
# Version 3.0.0 - This updates the package to Swift 5.3, drops all previous Swift support and removes previously deprecated API. - The package name was renamed to `semver` (from `SemVer`). Please change your target's dependency definition to: `.product(name: "SemVer", package: "semver")`. - Also, the Xcode project was removed given that Xcode has a SwiftPM integration since Xcode 11.
v3.0.0 RC 1
2 years ago
This is the first release candidate for version 3.0.0. The minor version increase is due to dropping support for Swift pre 5.3 as well as removing older, deprecated APIs.
v2.3.1
3 years ago
Addes support for Swift 5.2
sersoft-gmbh/device-input 6.3.0
Processes inputs read from /dev/input device streams
⭐️ 3
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v6.3.0
8 weeks ago
## What's Changed - Add Swift 5.8 support. **Full Changelog**: https://github.com/sersoft-gmbh/device-input/compare/6.2.0...6.3.0
v6.2.0
36 weeks ago
Fix various bugs in the `InputDevice.ActiveStreamSequence` implementation. **Full Changelog**: https://github.com/sersoft-gmbh/device-input/compare/6.1.1...6.2.0
v6.1.1
36 weeks ago
## What's Changed * Fix dependency declaration **Full Changelog**: https://github.com/sersoft-gmbh/device-input/compare/6.1.0...6.1.1
v6.1.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/device-input/compare/6.0.0...6.1.0
v6.0.0
1 year ago
## What's Changed * Add support for Swift 5.6 * Drop support for Swift pre 5.5 * Update SystemPackage to 1.0.0 * Fix Stream not closing file descriptor on end / failure **Full Changelog**: https://github.com/sersoft-gmbh/device-input/compare/5.1.3...6.0.0
v5.0.0
2 years ago
- Refactor package to use sersoft-gmbh/swift-filestreamer under the hood.
v4.1.0
2 years ago
- Add Swift 5.4 support
v4.0.0
2 years ago
This improves the API of the `InputEvent` subtypes, passes multiple events to an event consumer, adds documentation and tests. Also, the repository / package was renamed from `DeviceInput` to `device-input`.
v3.0.4
2 years ago
Internal cleanup
v3.0.3
2 years ago
Don't over-resume dispatch source
iOS macOS watchOS tvOS
sersoft-gmbh/SwiftDirector 0.0.11
A Swift interface for (Open)LDAP
⭐️ 3
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
11th Dev Release
1 year ago
- Improve documentation
10th Dev Release
1 year ago
- Fix build failure **Full Changelog**: https://github.com/sersoft-gmbh/SwiftDirector/compare/0.0.9...0.0.10
9th Dev Release
1 year ago
**Full Changelog**: https://github.com/sersoft-gmbh/SwiftDirector/compare/0.0.8...0.0.9
7th Dev Release
3 years ago
6th Dev Release
3 years ago
5th Dev Release
3 years ago
4th Dev Release
3 years ago
3rd Dev Release
3 years ago
2nd Dev Release
3 years ago
0.0.1 - Dev Release
3 years ago
A first dev release for testing.
iOS macOS watchOS tvOS
sersoft-gmbh/xmlwrangler 5.5.0
Easily deal with XMLs in Swift
⭐️ 3
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v5.5.0
8 weeks ago
## What's Changed - Add Swift 5.8 support **Full Changelog**: https://github.com/sersoft-gmbh/xmlwrangler/compare/5.4.0...5.5.0
v5.4.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/xmlwrangler/compare/5.3.1...5.4.0
v5.3.1
1 year ago
- Fix documentation generation **Full Changelog**: https://github.com/sersoft-gmbh/xmlwrangler/compare/5.3.0...5.3.1
v5.3.0
1 year ago
## What's Changed - Add Swift 5.6 support, drop support for Swift pre 5.5 - Fix warning in Swift 5.6 **Full Changelog**: https://github.com/sersoft-gmbh/xmlwrangler/compare/5.2.0...5.3.0
v5.1.0
2 years ago
- Add `XMLContentBuilder`, which is a `@resultBuilder` implementation for building `XMLElement.Content` - this is only available when building with Swift 5.4. - Add Swift 5.4 support.
v5.0.0
2 years ago
This is the final version 5.0.0. No source changes have since the last RC. # Changes - Massive internal refactoring (addendum to version 4.0) - `Element` is now named `XMLElement` with a typealias `XWElement` for disambiguation with `Foundation.XMLElement` - All References to `object` that referred to an `XMLElement` have been replaced with `element`. - `XMLElement.Content` is now a custom collection implementation containing the enum that was previously `Element.Content`. - `XMLElement.Attributes` is now a custom collection implementation that works similar to a dictionary. The `XMLElement.Attributes.Key` is what was previously `Element.AttributeKey`. `XMLElement.Attributes.Content` is what was previously `Element.AttributeValue`. - The `XMLAttributeContentConvertible`, `ExpressibleByXMLAttributeContent` and `XMLAttributeRepresentableProtocol` (which is the combination of the former two) can now be used to create attributes with dictionary literals. This allows e.g. the following code to work: ```swift let existingString = "abc" let attributeContent = XMLElement.Attributes.Content("some value") let attributes: XMLElement.Attributes = [ "testKey": existingString, "otherAttribute": "whatever", "existingContent": attributeContent, ] ```
v5.0 RC1
2 years ago
This is the first release candidate for a version 5.0. # Changes - Massive internal refactoring (addendum to version 4.0) - `Element` is now named `XMLElement` with a typealias `XWElement` for disambiguation with `Foundation.XMLElement` - All References to `object` that referred to an `XMLElement` have been replaced with `element`. - `XMLElement.Content` is now a custom collection implementation containing the enum that was previously `Element.Content`. - `XMLElement.Attributes` is now a custom collection implementation that works similar to a dictionary. The `XMLElement.Attributes.Key` is what was previously `Element.AttributeKey`. `XMLElement.Attributes.Content` is what was previously `Element.AttributeValue`. - The `XMLAttributeContentConvertible`, `ExpressibleByXMLAttributeContent` and `XMLAttributeRepresentableProtocol` (which is the combination of the former two) can now be used to create attributes with dictionary literals. This allows e.g. the following code to work: ```swift let existingString = "abc" let attributeContent = XMLElement.Attributes.Content("some value") let attributes: XMLElement.Attributes = [ "testKey": existingString, "otherAttribute": "whatever", "existingContent": attributeContent, ] ```
v4.0.0
2 years ago
# Version 4.0.0 - Adds support for Swift 5.3, dropping support for previous Swift versions. - Removes previously deprecated APIs - Renames the package to `xmlwrangler` (from `XMLWrangler`). Please adjust your target dependency definition to: `.product(name: "XMLWrangler", package: "xmlwrangler")` - Adds `ExpressibleByXMLElement` and `XMLElementConvertible` protocols for dealing with Elements and types easier. There is also `XMLElementRepresentable` which is simply the combination of the two aforementioned protocols. - Some convenience APIs that were simply a chain of calling other public APIs were removed (e.g. `convertedStringContent(ofElementAt:)`). Please use the corresponding public APIs directly (e.g. `element(at: /*...*/).convertedStringContent()`.
v3.4.2
3 years ago
Fixes #11.
v3.4.1
3 years ago
Add support for Swift 5.2
sersoft-gmbh/swift-filestreamer 0.6.0
A file streaming library
⭐️ 2
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.6.0
8 weeks ago
## What's Changed - Add Swift 5.8 support. **Full Changelog**: https://github.com/sersoft-gmbh/swift-filestreamer/compare/0.5.0...0.6.0
v0.5.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/swift-filestreamer/compare/0.4.1...0.5.0
v0.4.1
1 year ago
- Fix Swift package dependency version on Swift 5.5 **Full Changelog**: https://github.com/sersoft-gmbh/swift-filestreamer/compare/0.4.0...0.4.1
v0.4.0
1 year ago
## What's Changed * Add support for Swift 5.6 * Drop support for Swift pre 5.5 * Add `FileStream.Sequence` for all platforms **Full Changelog**: https://github.com/sersoft-gmbh/swift-filestreamer/compare/0.3.2...0.4.0
v0.2.0
2 years ago
- Only allow one callback to prevent doing work multiple times in upstream callbacks
v0.1.0
2 years ago
Rework `FileStream<T>` to use `FileDescriptor` instead of `FilePath`.
v0.0.1
2 years ago
Initial Release
iOS macOS watchOS tvOS
sersoft-gmbh/app-groups 1.5.0
A simple model for accessing app groups.
⭐️ 2
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.5.0
8 weeks ago
## What's Changed - Add Swift 5.8 support. **Full Changelog**: https://github.com/sersoft-gmbh/app-groups/compare/1.4.0...1.5.0
v1.4.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/app-groups/compare/1.3.0...1.4.0
v1.3.0
1 year ago
## What's Changed * Add Swift 5.6 support * Drop support for Swift pre 5.5 **Full Changelog**: https://github.com/sersoft-gmbh/app-groups/compare/1.2.0...1.3.0
v1.1.0
2 years ago
- Add Swift 5.4 support
v1.0.0
2 years ago
Initial Release
sersoft-gmbh/swift-inotify 0.4.0
A Swift wrapper around inotify on Linux
⭐️ 2
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.4.0
8 weeks ago
## What's Changed - Add Swift 5.8 support. **Full Changelog**: https://github.com/sersoft-gmbh/swift-inotify/compare/0.3.0...0.4.0
v0.3.0
36 weeks ago
# BREAKING - Completely rewrite using async/await **Full Changelog**: https://github.com/sersoft-gmbh/swift-inotify/compare/0.2.2...0.3.0
v0.2.2
36 weeks ago
## What's Changed * Fix deprecation warning **Full Changelog**: https://github.com/sersoft-gmbh/swift-inotify/compare/0.2.1...0.2.2
v0.2.1
37 weeks ago
## What's Changed * Fix dependency declaration **Full Changelog**: https://github.com/sersoft-gmbh/swift-inotify/compare/0.2.0...0.2.1
v0.2.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/swift-inotify/compare/0.1.1...0.2.0
v0.1.1
1 year ago
* Fix build failure **Full Changelog**: https://github.com/sersoft-gmbh/swift-inotify/compare/0.1.0...0.1.1
v0.1.0
1 year ago
## What's Changed * Add Swift 5.6 support **Full Changelog**: https://github.com/sersoft-gmbh/swift-inotify/compare/0.0.7...0.1.0
v0.0.4
2 years ago
- Fix build
v0.0.3
2 years ago
- Fix reading of event file path (now optional).
v0.0.2
2 years ago
- Fix Package.swift on Darwin platforms.
iOS macOS watchOS tvOS
sersoft-gmbh/licensed-components 1.5.0
A simple package containing models and UI for listing open source components
⭐️ 1
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.5.0
8 weeks ago
## What's Changed - Add Swift 5.8 support - Make individual views public for custom composed UIs. **Full Changelog**: https://github.com/sersoft-gmbh/licensed-components/compare/1.4.0...1.5.0
v1.4.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/licensed-components/compare/1.3.0...1.4.0
v1.3.0
1 year ago
## What's Changed * Add Swift 5.6 support **Full Changelog**: https://github.com/sersoft-gmbh/licensed-components/compare/1.2.0...1.3.0
v1.2.0
1 year ago
## What's Changed * Add Swift 5.5 support **Full Changelog**: https://github.com/sersoft-gmbh/licensed-components/compare/1.1.0...1.2.0
v1.1.0
2 years ago
- Add Swift 5.4 support
v1.0.1
2 years ago
- Fix animation glitch when collapsing licenses.
v1.0.0
2 years ago
Initial release
iOS macOS watchOS tvOS
sersoft-gmbh/auth-scope 3.4.0
A swift library to deal with authentication scopes
⭐️ 0
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v3.4.0
8 weeks ago
## What's Changed - Add Swift 5.8 support. **Full Changelog**: https://github.com/sersoft-gmbh/auth-scope/compare/3.3.0...3.4.0
v3.3.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/auth-scope/compare/3.2.0...3.3.0
v3.2.0
1 year ago
## What's Changed * Add support for Swift 5.6 * Drop support for Swift pre 5.5 **Full Changelog**: https://github.com/sersoft-gmbh/auth-scope/compare/3.1.0...3.2.0
v3.1.0
2 years ago
- Add Swift 5.4 support
v3.0.0
2 years ago
This renames the package to "auth-scope".
v2.0.0
2 years ago
This adds support for Swift 5.3 and removes support for previous versions of Swift. Also, some internal improvements were made.
v1.1.1
3 years ago
Support for Swift 5.2
v1.1.0
3 years ago
Adds support for Swift 5.1, properly set version number.
Remove recursive RegEx patterns
3 years ago
This removes the recursive regex from the contains any regex. To enable compatibility with more regex implementations.
Version 1.0.0
3 years ago
This is the initial release. Please check out the [README](README.md) or the [online documentation](https://sersoft-gmbh.github.io/AuthScope).
sersoft-gmbh/simple-formatting 0.3.0
A collection of simple formatters for Swift using the ICU4C lib
⭐️ 0
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v0.3.0
8 weeks ago
## What's Changed - Add Swift 5.8 support **Full Changelog**: https://github.com/sersoft-gmbh/simple-formatting/compare/0.2.0...0.3.0
v0.2.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/simple-formatting/compare/0.1.1...0.2.0
v0.1.1
1 year ago
- Fix modules
v0.1.0
1 year ago
- Initial Release
sersoft-gmbh/swifty-holidays 2.5.0
A holiday calculator written in Swift
⭐️ 0
🕓 6 days ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v2.5.0
6 days ago
## What's Changed * Add International Worker's Day, including two aliases "May Day" and "Labor Day". **Full Changelog**: https://github.com/sersoft-gmbh/swifty-holidays/compare/2.4.0...2.5.0
v2.4.0
8 weeks ago
## What's Changed - Add Swift 5.8 support **Full Changelog**: https://github.com/sersoft-gmbh/swifty-holidays/compare/2.3.0...2.4.0
v2.3.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/swifty-holidays/compare/2.2.0...2.3.0
v2.2.0
1 year ago
## What's Changed * Add Swift 5.6 support **Full Changelog**: https://github.com/sersoft-gmbh/swifty-holidays/compare/2.1.0...2.2.0
v2.1.0
2 years ago
- Add Swift 5.4 support
v2.0.0
2 years ago
This drops support pre Swift 5.3 and renames the package to swifty-holidays.
v1.0.3
2 years ago
Fixes some typos
v1.0.2
2 years ago
This adds Swift 5.3 support
v1.0.1
3 years ago
This adds Swift 5.2 support
v1.0.0
3 years ago
This is the initial release of SwiftyHolidays, the holiday calculator written in Swift. See the [online documentation](https://sersoft-gmbh.github.io/SwiftyHolidays) for more information on the API.
iOS macOS watchOS tvOS
sersoft-gmbh/app-information 1.5.0
A simple package for storing as well as showing app infos.
⭐️ 0
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v1.5.0
8 weeks ago
## What's Changed - Add Swift 5.8 support **Full Changelog**: https://github.com/sersoft-gmbh/app-information/compare/1.4.0...1.5.0
v1.4.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/app-information/compare/1.3.0...1.4.0
v1.3.0
1 year ago
## What's Changed * Add support for Swift 5.6 * Drop support for Swift pre 5.5 **Full Changelog**: https://github.com/sersoft-gmbh/app-information/compare/1.2.0...1.3.0
v1.1.0
2 years ago
- Swift 5.4 support
v1.0.0
2 years ago
Initial Release
sersoft-gmbh/route-docs 4.0.0
Framework for adding documentation to Vapor routes
⭐️ 0
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v4.0.0
8 weeks ago
## What's Changed - Update to Swift 5.8, drop support for Swift pre 5.8. - Remove `AnyTypeWrapping` since `TypeWrapping` now suffices. - General cleanup. **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/3.1.1...4.0.0
v3.1.0
32 weeks ago
## What's Changed * Update to Bootstrap 5 **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/3.0.2...3.1.0
v3.0.2
33 weeks ago
- Improve documentation types when optionals are involved. **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/3.0.1...3.0.2
v3.0.1
33 weeks ago
- Fix type names **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/3.0.0...3.0.1
v3.0.0
33 weeks ago
## What's Changed **Breaking** - Improve type parsing - List all objects used in a query **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/2.5.1...3.0.0
v2.5.1
34 weeks ago
- Fix default argument visibility. **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/2.5.0...2.5.1
v2.5.0
34 weeks ago
## What's Changed * Drop FFFoundation dependency * Drop support for Swift pre 5.7 (SPM will automatically pick an earlier release for older Swift versions) * Update NIO dependency - fix deprecations **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/2.4.0...2.5.0
v2.4.0
37 weeks ago
## What's Changed * Add Swift 5.7 support **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/2.3.0...2.4.0
v2.3.0
1 year ago
* Remove `escaped` tag - Leaf escapes its content itself now * Increase min required LeafKit version. **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/2.2.0...2.3.0
v2.2.0
1 year ago
## What's Changed * Add support for Swift 5.6 * Drop support for Swift pre 5.5 **Full Changelog**: https://github.com/sersoft-gmbh/route-docs/compare/2.1.0...2.2.0
macOS
sersoft-gmbh/path-wrangler 2.4.0
A path library written in Swift
⭐️ 0
🕓 8 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
v2.4.0
8 weeks ago
## What's Changed - Add Swift 5.8 support. **Full Changelog**: https://github.com/sersoft-gmbh/path-wrangler/compare/2.3.0...2.4.0
v2.3.0
1 year ago
## What's Changed * Add Swift 5.6 support **Full Changelog**: https://github.com/sersoft-gmbh/path-wrangler/compare/2.1.0...2.3.0
v2.2.0
1 year ago
## What's Changed * Add Swift 5.5 support **Full Changelog**: https://github.com/sersoft-gmbh/path-wrangler/compare/2.1.0...2.2.0
v2.1.0
2 years ago
- Add Support for Swift 5.4
v2.0.0
2 years ago
This drops support for Swift pre 5.3 and renames the package to path-wrangler. Also, the copied algorithms code from the Swift stdlib was replaced by [Swift Algorithms](https://github.com/apple/swift-algorithms).
v1.0.2
2 years ago
This adds support for Swift 5.3
v1.0.1
3 years ago
Version 1.0.1 adds Swift 5.2 support
v1.0.0
3 years ago
This is the initial release of PathWrangler, the simple yet powerful library for dealing with file system paths in Swift. See the [online documentation](https://sersoft-gmbh.github.io/PathWrangler) for more information on the API.
sersoft-gmbh/swift-tacho-view 0.0.1
A simple tacho view with an animated needle.
⭐️ 0
🕓 44 weeks ago
iOS macOS watchOS tvOS macCatalyst

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics