BoltsFramework / Bolts-ObjC

Bolts is a collection of low-level libraries designed to make developing mobile apps easier.
Other
5.65k stars 578 forks source link

Next Version Release? #325

Open dplewis opened 5 years ago

dplewis commented 5 years ago

First off, thank you guys for maintaining this amazing repo.

With the latest Xcode 10 fixes, I'm trying to update podspec in my project with the latest changes.

The pod is not releasable with a commit, only with a real published version.

The last release was Jan 1.

codytwinton commented 5 years ago

@nlutsenko thoughts?

dplewis commented 5 years ago

@nlutsenko Any updates on this?

philtre commented 5 years ago

You can configure your Podfile to pull from a specific branch, tag, or commit:

pod 'Bolts', :git => 'https://github.com/BoltsFramework/Bolts-ObjC.git', :branch => 'master'

https://guides.cocoapods.org/using/the-podfile.html#from-a-podspec-in-the-root-of-a-library-repo

dplewis commented 5 years ago

@philtre I prefer to pin my dependencies.

philtre commented 5 years ago

@dplewis I think I misread your post. My comment only applies to the Podfile where one is able to pull from a specific commit. It's not possible to do the same inside a podspec. Sorry for the confusion.