From 95c11b70dff42910c08998ae55e6d531045b4d8a Mon Sep 17 00:00:00 2001 From: Timur Shafigullin Date: Mon, 19 Feb 2024 14:23:10 +0300 Subject: [PATCH] Release 0.5.9 (#58) --- .gitignore | 59 ++++++++- .../contents.xcworkspacedata | 7 - .../xcschemes/AnalyticsGen-Package.xcscheme | 114 ---------------- .../xcschemes/AnalyticsGenTools.xcscheme | 67 ---------- .../xcschemes/analyticsgen.xcscheme | 123 ------------------ Makefile | 2 +- Sources/AnalyticsGen/main.swift | 2 +- 7 files changed, 57 insertions(+), 317 deletions(-) delete mode 100644 .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata delete mode 100644 .swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGen-Package.xcscheme delete mode 100644 .swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGenTools.xcscheme delete mode 100644 .swiftpm/xcode/xcshareddata/xcschemes/analyticsgen.xcscheme diff --git a/.gitignore b/.gitignore index b12e5ba..056e851 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,57 @@ +## OS X files .DS_Store -/.build -/Packages -/*.xcodeproj +.DS_Store? +.Trashes +.Spotlight-V100 +*.swp + +## Xcode build files +DerivedData/ +build/ + +## Xcode private settings +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 xcuserdata/ -Example/generated \ No newline at end of file + +## Other +*.xccheckout +*.moved-aside +*.xcuserstate +*.xcscmblueprint + +## Obj-C/Swift specific +*.hmap +*.ipa +*.dSYM.zip +*.dSYM + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Packages Manager +Packages +.build +.swiftpm + +# CocoaPods +Pods/ + +# Carthage +Carthage/Build + +# fastlane +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots/**/*.png +fastlane/test_output + +# AnalyticsGen +analyticsgen-*.zip diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGen-Package.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGen-Package.xcscheme deleted file mode 100644 index 400bea6..0000000 --- a/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGen-Package.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGenTools.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGenTools.xcscheme deleted file mode 100644 index 39bccf4..0000000 --- a/.swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGenTools.xcscheme +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/analyticsgen.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/analyticsgen.xcscheme deleted file mode 100644 index 49c7c5c..0000000 --- a/.swiftpm/xcode/xcshareddata/xcschemes/analyticsgen.xcscheme +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Makefile b/Makefile index 01ecdb8..3201f00 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ PREFIX?=/usr/local PRODUCT_NAME=analyticsgen -PRODUCT_VERSION=0.5.8 +PRODUCT_VERSION=0.5.9 TEMPLATES_NAME=Templates README_NAME=README.md LICENSE_NAME=LICENSE diff --git a/Sources/AnalyticsGen/main.swift b/Sources/AnalyticsGen/main.swift index d0c4f71..7082d5b 100644 --- a/Sources/AnalyticsGen/main.swift +++ b/Sources/AnalyticsGen/main.swift @@ -20,6 +20,6 @@ private extension String { // MARK: - Type Properties - static let version = "0.5.8" + static let version = "0.5.9" static let description = "Generate analytics code for you Swift iOS project" }