Skip to content

Commit

Permalink
chore: prep release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
idc101 committed Jun 15, 2020
1 parent 38bd66a commit 72bea92
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Dependencies._

ThisBuild / scalaVersion := "2.12.11"
ThisBuild / version := "1.1.0"
ThisBuild / version := "1.1.1"
ThisBuild / organization := "net.cardnell"

lazy val root = (project in file("."))
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Linux

```bash
curl -L https://github.com/idc101/git-mkver/releases/download/v1.1.0/git-mkver-darwin-amd64-1.1.0.tar.gz | tar xvz
curl -L https://github.com/idc101/git-mkver/releases/download/v1.1.1/git-mkver-darwin-amd64-1.1.1.tar.gz | tar xvz
sudo mv git-mkver /usr/local/bin
```

Expand Down
4 changes: 2 additions & 2 deletions etc/Formula/git-mkver.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class GitMkver < Formula
MKVER_VERSION = "1.1.0".freeze
MKVER_SHA256 = "f69fb9b97f510b05455138fc202b53aa5d3f55af471d995bbe74888aeaea28db".freeze
MKVER_VERSION = "1.1.1".freeze
MKVER_SHA256 = "9f6c6d5b4f96c9f3f3da9d58aee8d9f133c706db3cfb915e48e3a3d1964cede2".freeze

desc "Installs git-mkver from pre-built binaries"
homepage "https://idc101.github.io/git-mkver/"
Expand Down
6 changes: 3 additions & 3 deletions etc/scoop/git-mkver.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": "1.1.0",
"version": "1.1.1",
"description": "Automatic Semantic Versioning for git based software development",
"url": "https://github.com/idc101/git-mkver/releases/download/v1.1.0/git-mkver-windows-amd64-1.1.0.zip",
"hash": "3F0E0E2C982A3B7C4C74B5D7CCCF4340FA6DB796337E4613C67EAF01D8B1CF60",
"url": "https://github.com/idc101/git-mkver/releases/download/v1.1.1/git-mkver-windows-amd64-1.1.1.zip",
"hash": "D61C8CB6DC380BA1E6985377C3E2AFE6DAD5DE6993EA1352A705B0C1CCBCE85A",
"extract_to": "",
"bin": "git-mkver.exe"
}
2 changes: 1 addition & 1 deletion etc/shell/install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#/bin/bash
MKVER_VERSION=1.1.0
MKVER_VERSION=1.1.1
curl -L https://github.com/idc101/git-mkver/releases/download/v${MKVER_VERSION}/git-mkver-darwin-amd64-${MKVER_VERSION}.tar.gz -o git-mkver.tar.gz
tar xvzf git-mkver.tar.gz
sudo mv git-mkver /usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/net/cardnell/mkver/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ import zio.Has
package object mkver {
type Git = Has[Git.Service]

val GitMkverVersion = "1.1.0"
val GitMkverVersion = "1.1.1"
}

0 comments on commit 72bea92

Please sign in to comment.