Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
bugkingK committed Oct 1, 2019
1 parent d4ec554 commit a08c406
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions BKCountDownTimer.podspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Pod::Spec.new do |s|

s.name = "BKCountDownTimer"
s.version = "0.0.1"
s.version = "0.0.5"
s.summary = "Circle shaped countdown timer."
s.description = <<-DESC
Circle shaped countdown timer. With Swift
DESC

s.homepage = "https://github.com/bugkingK/BKCountDownTimer"
s.homepage = "https://github.com/bugkingK/CountDownTimer"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "bugkingK" => "[email protected]" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/bugkingK/BKCountDownTimer.git", :tag => "#{s.version}" }
s.source = { :git => "https://github.com/bugkingK/CountDownTimer.git", :tag => "#{s.version}" }
s.source_files = "Classes", "BKCountDownTimer/Sources/**/*.{swift}"

s.swift_version = '5.0'
Expand Down
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import PackageDescription

let package = Package(
name: "CountDownTimer",
name: "BKCountDownTimer",
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
Expand All @@ -13,10 +13,10 @@ let package = Package(
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "CountDownTimer",
name: "BKCountDownTimer",
dependencies: []),
.testTarget(
name: "CountDownTimerTests",
dependencies: ["CountDownTimer"]),
name: "BKCountDownTimerTests",
dependencies: ["BKCountDownTimer"]),
]
)

0 comments on commit a08c406

Please sign in to comment.