Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Library Evolution #117

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
3 changes: 2 additions & 1 deletion MarkdownKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MarkdownKit"
s.version = "1.7.1"
s.version = "1.7.2"
s.summary = "MarkdownKit is a customizable and extensible Markdown parser for iOS and macOS."
s.description = <<-DESC
MarkdownKit is a customizable and extensible Markdown parser for iOS and macOS.
Expand All @@ -26,4 +26,5 @@ all the Markdown elements.
s.osx.source_files = "MarkdownKit/Sources/AppKit/**/*"
s.osx.framework = 'AppKit'

s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }
end
12 changes: 8 additions & 4 deletions MarkdownKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -1082,11 +1082,13 @@
B62C1C1121EF7EED00308C8C /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DEPLOYMENT_POSTPROCESSING = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
Expand All @@ -1098,7 +1100,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.7.1;
MARKETING_VERSION = 1.7.2;
PRODUCT_BUNDLE_IDENTIFIER = com.md.MarkdownKit.iOS;
PRODUCT_NAME = "$(PROJECT_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -1113,11 +1115,13 @@
B62C1C1221EF7EED00308C8C /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DEPLOYMENT_POSTPROCESSING = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
Expand All @@ -1129,7 +1133,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.7.1;
MARKETING_VERSION = 1.7.2;
PRODUCT_BUNDLE_IDENTIFIER = com.md.MarkdownKit.iOS;
PRODUCT_NAME = "$(PROJECT_NAME)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1191,7 +1195,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 1.7.1;
MARKETING_VERSION = 1.7.2;
PRODUCT_BUNDLE_IDENTIFIER = com.md.MarkdownKit.macOS;
PRODUCT_NAME = "$(PROJECT_NAME)";
SDKROOT = macosx;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ MarkdownKit is available through [Swift Package Manager](https://swift.org/packa
To add MarkdownKit as a dependency of your Swift package, simply add the following line to your `Package.swift` file:

```swift
.package(url: "https://github.com/bmoliveira/MarkdownKit.git", from: "1.7.0")
.package(url: "https://github.com/bmoliveira/MarkdownKit.git", from: "1.7.2")
```

## Supported Elements
Expand Down