From 201120eeb0020d9549094eeabb17425a775b3a8a Mon Sep 17 00:00:00 2001 From: netevert Date: Sat, 31 Mar 2018 18:21:15 +0100 Subject: [PATCH] minor fix --- .goreleaser.yml | 2 ++ CHANGELOG.md | 8 ++++++++ README.md | 2 +- dnsmorph.go | 2 +- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index b7e79d3..500de75 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -10,6 +10,8 @@ builds: goarch: - amd64 - 386 + - arm + - arm64 # Archive customization archive: format: tar.gz diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ee8b97..d0d95e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.1.1] - 2018-03-31 +### Added +- Arm and arm64 architectures + +### Fixed +- Added zip binary distributions for windows releases +- Readme + ## [1.1.0] - 2018-03-30 ### Added - Concurrent A record dns lookup diff --git a/README.md b/README.md index d149809..96e9359 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Installation ============ There are two ways to install dnsmorph on your system: -1. Download the required pre-compiled binaries from the [latest release page](https://github.com/netevert/dnsmorph/releases) and extract in a directory of your choosing. +1. Downloading the pre-compiled binaries for your platform from the [latest release page](https://github.com/netevert/dnsmorph/releases) and extracting in a directory of your choosing. 2. Downloading and compiling the source code yourself by running the following commands: diff --git a/dnsmorph.go b/dnsmorph.go index bcde488..d856a5f 100644 --- a/dnsmorph.go +++ b/dnsmorph.go @@ -16,7 +16,7 @@ import ( ) // program version -const version = "1.1.0" +const version = "1.1.1" var ( g = color.New(color.FgHiGreen)