Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rosylilly/semver
Semantic Versioning module for Crystal
https://github.com/rosylilly/semver
Last synced: 5 days ago
JSON representation
Semantic Versioning module for Crystal
- Host: GitHub
- URL: https://github.com/rosylilly/semver
- Owner: rosylilly
- License: mit
- Created: 2015-09-21T21:41:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-21T21:41:37.000Z (over 9 years ago)
- Last Synced: 2024-12-22T13:14:57.763Z (15 days ago)
- Language: Crystal
- Homepage: https://github.com/rosylilly/semver
- Size: 117 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# semver
Semantic Versioning module for Crystal.
## Installation
Add this to your application's `shard.yml`:
```yaml
dependencies:
semver:
github: rosylilly/semver
```## Usage
```crystal
require "semver"v1_0_0 = Semver::Version.new("1.0.0")
# or
v1_0_0 = Semver::Version.new(1, 0, 0)
```## Contributing
1. Fork it ( https://github.com/rosylilly/semver/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request## Contributors
- rosylilly(https://github.com/rosylilly) Sho Kusano - creator, maintainer