Skip to content

Commit

Permalink
Release 0.5.9 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
timbaev authored Feb 19, 2024
1 parent e3e287c commit 95c11b7
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 317 deletions.
59 changes: 55 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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

## 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
7 changes: 0 additions & 7 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

This file was deleted.

114 changes: 0 additions & 114 deletions .swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGen-Package.xcscheme

This file was deleted.

67 changes: 0 additions & 67 deletions .swiftpm/xcode/xcshareddata/xcschemes/AnalyticsGenTools.xcscheme

This file was deleted.

123 changes: 0 additions & 123 deletions .swiftpm/xcode/xcshareddata/xcschemes/analyticsgen.xcscheme

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/AnalyticsGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 95c11b7

Please sign in to comment.