Skip to content

Commit

Permalink
Lock in TraceLog to a compatible version. (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonystone authored Apr 27, 2019
1 parent 5a3674b commit 4398b1d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
source 'https://rubygems.org'
gem 'cocoapods', '~> 1.5.1'
gem 'cocoapods', '~> 1.6.1'
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
.library(name: "TraceLogAdaptiveWriter", type: .dynamic, targets: ["TraceLogAdaptiveWriter"])
],
dependencies: [
.package(url: "https://github.com/tonystone/tracelog.git", from: "4.0.1"),
.package(url: "https://github.com/tonystone/tracelog.git", "4.0.1"..<"5.0.0"),
.package(url: "https://github.com/tonystone/csdjournal.git", .exact("1.3.0"))
],
targets: [
Expand Down
4 changes: 2 additions & 2 deletions TraceLogAdaptiveWriter.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = "TraceLogAdaptiveWriter"
s.version = "1.0.0"
s.version = "1.0.1"
s.summary = "An adaptive system log writer for the TraceLog logging system."
s.description = <<-DESC
A `Writer` implementation for the TraceLog logging system that logs to the system logging facility on the platform that its running on.
Expand All @@ -27,5 +27,5 @@ Pod::Spec.new do |s|

s.source_files = 'Sources/TraceLogAdaptiveWriter/**/*.swift'

s.dependency 'TraceLog', ">= 4.0.1"
s.dependency 'TraceLog', ">= 4.0.1", "< 5.0.0"
end

0 comments on commit 4398b1d

Please sign in to comment.