A command line tools to bump podspec version for Cocoapods.
npm install podspec-bumpA command line tools to bump podspec version for CocoaPods.
- Automatically increments version in *.podspec
- Default is dry-run
- Dump version in podspec file
```
npm install -g podspec-bump
Automatically find *.podspec file from working directory.
`
$ podspec-bump -h
Usage: podspec-bump
-h, --help displays help
-w, --write write incremented version
-i, --increment String Incrementing "major", "minor", or "patch" version; or specify version [default: "patch"]
-p, --path String path to podspec
`
default is dry-run(doesn't write to file)
If you want to write incremented version to the podspec file, use -w option.
` shell`
$ podspec-bump -w
Incrementing "major", "minor", or "patch" version; or specify version [default: "patch"]
` shell`
$ podspec-bump major -wor
$ podspec-bump -i 1.2.3 -w
You can use -p option
` shell`
$ podspec-bump -p /path/to/example.podspec
If you want to know podspec version value, use --dump-version option.
``
$ podspec-bump --dump-version
0.1.0
Automatically release podspec !
` shellpodspec-bump --dump-version
podspec-bump -w
git commit -am "bump " podspec-bump --dump-version
git tag ""`
git push --tags
pod trunk push
1. Fork it!
2. Create your feature branch: git checkout -b my-new-featuregit commit -am 'Add some feature'
3. Commit your changes: git push origin my-new-feature`
4. Push to the branch:
5. Submit a pull request :D
MIT