Skip to content

Commit

Permalink
Merge pull request #3 from mportizlunyov/v0.0.2-release
Browse files Browse the repository at this point in the history
V0.0.2 release
  • Loading branch information
mportizlunyov authored Jul 13, 2024
2 parents 1af031d + ff61c3e commit 3d441c3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module linuxdistroengine-go
module github.com/mportizlunyov/linuxdistroengine-go

go 1.21
6 changes: 3 additions & 3 deletions linuxdistroengine/linuxdistroengine.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Written by Mikhail P. Ortiz-Lunyov
//
// Version 0.0.1-release (July 11th 2024)
// Version 0.0.2-release (July 12th 2024)
//
// This script is licensed under the GNU Public License v3 (GPLv3)
// Intended for use on Linux to check the specific distro running, using native Linux tools.
Expand All @@ -23,8 +23,8 @@ import (
// Declare fields
// // Set constants
// // // Version
const SHORT_VERSION string = "0.0.1"
const VERSION_NAME string = "July 11th 2024"
const SHORT_VERSION string = "0.0.2"
const VERSION_NAME string = "July 12th 2024"
const DEV_VERSION string = "-release"
const LONG_VERSION string = "v" + SHORT_VERSION + DEV_VERSION + " (" + VERSION_NAME + ")"

Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Written by Mikhail P. Ortiz-Lunyov
//
// Version 0.0.1-release (July 11th 2024)
// Version 0.0.2-release (July 12th 2024)
//
// This script is licensed under the GNU Public License v3 (GPLv3)
// Intended for use on Linux to check the specific distro running, using native Linux tools.
Expand All @@ -17,12 +17,12 @@ import (
"fmt"
"os"

linuxdistorengine "linuxdistroengine-go/linuxdistroengine"
linuxdistorengine "github.com/mportizlunyov/linuxdistroengine-go/linuxdistroengine"
)

// Script-level fields
const SHORT_VERSION string = "0.0.1"
const VERSION_NAME string = "July 11th 2024"
const SHORT_VERSION string = "0.0.2"
const VERSION_NAME string = "July 12th 2024"
const DEV_VERSION string = "-release"
const LONG_VERSION string = "v" + SHORT_VERSION + DEV_VERSION + " (" + VERSION_NAME + ")"

Expand Down

0 comments on commit 3d441c3

Please sign in to comment.