Fix version number to 1.0.0 where needed

The SHA1 still needs to be updated in the `homebrew\mop.rb` file.
Also, accepting these changes might entails that version will now be 1.0.1.
Update accordingly.
master
joce 3 years ago
parent 8326e469fb
commit 2907bb3016
  1. 2
      Makefile
  2. 2
      cmd/mop/main.go
  3. 4
      homebrew/mop.rb

@ -2,7 +2,7 @@
# Use of this source code is governed by a MIT-style license that can # Use of this source code is governed by a MIT-style license that can
# be found in the LICENSE file. # be found in the LICENSE file.
VERSION = 0.2.0 VERSION = 1.0.0
PACKAGE = ./cmd/mop PACKAGE = ./cmd/mop
run: run:

@ -17,7 +17,7 @@ import (
// File name in user's home directory where we store the settings. // File name in user's home directory where we store the settings.
const defaultProfile = `.moprc` const defaultProfile = `.moprc`
const help = `Mop v0.2.0 -- Copyright (c) 2013-2016 by Michael Dvorkin. All Rights Reserved. const help = `Mop v1.0.0 -- Copyright (c) 2013-2022 by Michael Dvorkin. All Rights Reserved.
NO WARRANTIES OF ANY KIND WHATSOEVER. SEE THE LICENSE FILE FOR DETAILS. NO WARRANTIES OF ANY KIND WHATSOEVER. SEE THE LICENSE FILE FOR DETAILS.
<u>Command</u> <u>Description </u> <u>Command</u> <u>Description </u>

@ -3,8 +3,8 @@ require "formula"
class Mop < Formula class Mop < Formula
homepage "https://github.com/mop-tracker/mop" homepage "https://github.com/mop-tracker/mop"
head "https://github.com/mop-tracker/mop.git" head "https://github.com/mop-tracker/mop.git"
url "https://github.com/mop-tracker/mop/archive/v0.2.0.tar.gz" url "https://github.com/mop-tracker/mop/archive/refs/tags/v1.0.0.tar.gz"
sha1 "bc666ec165d08b43134f7ec0bf29083ad5466243" sha1 "bc666ec165d08b43134f7ec0bf29083ad5466243" # Needs updating.
depends_on "go" => :build depends_on "go" => :build

Loading…
Cancel
Save