Skip to content

Commit 72bea92

Browse files
committed
chore: prep release 1.1.1
1 parent 38bd66a commit 72bea92

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Dependencies._
22

33
ThisBuild / scalaVersion := "2.12.11"
4-
ThisBuild / version := "1.1.0"
4+
ThisBuild / version := "1.1.1"
55
ThisBuild / organization := "net.cardnell"
66

77
lazy val root = (project in file("."))

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Linux
44

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

etc/Formula/git-mkver.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class GitMkver < Formula
2-
MKVER_VERSION = "1.1.0".freeze
3-
MKVER_SHA256 = "f69fb9b97f510b05455138fc202b53aa5d3f55af471d995bbe74888aeaea28db".freeze
2+
MKVER_VERSION = "1.1.1".freeze
3+
MKVER_SHA256 = "9f6c6d5b4f96c9f3f3da9d58aee8d9f133c706db3cfb915e48e3a3d1964cede2".freeze
44

55
desc "Installs git-mkver from pre-built binaries"
66
homepage "https://idc101.github.io/git-mkver/"

etc/scoop/git-mkver.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"description": "Automatic Semantic Versioning for git based software development",
4-
"url": "https://github.com/idc101/git-mkver/releases/download/v1.1.0/git-mkver-windows-amd64-1.1.0.zip",
5-
"hash": "3F0E0E2C982A3B7C4C74B5D7CCCF4340FA6DB796337E4613C67EAF01D8B1CF60",
4+
"url": "https://github.com/idc101/git-mkver/releases/download/v1.1.1/git-mkver-windows-amd64-1.1.1.zip",
5+
"hash": "D61C8CB6DC380BA1E6985377C3E2AFE6DAD5DE6993EA1352A705B0C1CCBCE85A",
66
"extract_to": "",
77
"bin": "git-mkver.exe"
88
}

etc/shell/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#/bin/bash
2-
MKVER_VERSION=1.1.0
2+
MKVER_VERSION=1.1.1
33
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
44
tar xvzf git-mkver.tar.gz
55
sudo mv git-mkver /usr/local/bin

src/main/scala/net/cardnell/mkver/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ import zio.Has
55
package object mkver {
66
type Git = Has[Git.Service]
77

8-
val GitMkverVersion = "1.1.0"
8+
val GitMkverVersion = "1.1.1"
99
}

0 commit comments

Comments
 (0)