Skip to content

Commit

Permalink
v1.4.11 release -- version.go updated
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Jul 5, 2023
1 parent 8fdfde5 commit d3800a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions ecmd/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Docs: [GoDoc](https://pkg.go.dev/github.com/emer/emergent/ecmd)

Note: this is now deprecated in favor of the [econfig](../econfig) system, which provides a single common Config object for all configuration settings, with TOML config files and command-line arg support.

`ecmd.Args` provides maps for storing commandline arguments of basic types (bool, string, int, float64), along with associated defaults and descriptions, which then set the standard library `flags` for parsing command line arguments.

It has functions for populating standard emergent simulation args.
Expand Down
2 changes: 1 addition & 1 deletion emer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ clean:
$(GOCLEAN)

# NOTE: MUST update version number here prior to running 'make release'
VERS=v1.4.10
VERS=v1.4.11
PACKAGE=emer
GIT_COMMIT=`git rev-parse --short HEAD`
VERS_DATE=`date -u +%Y-%m-%d\ %H:%M`
Expand Down
6 changes: 3 additions & 3 deletions emer/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package emer

const (
Version = "v1.4.10"
GitCommit = "5241c31" // the commit JUST BEFORE the release
VersionDate = "2023-06-17 08:21" // UTC
Version = "v1.4.11"
GitCommit = "8fdfde5" // the commit JUST BEFORE the release
VersionDate = "2023-07-05 07:42" // UTC
)

0 comments on commit d3800a4

Please sign in to comment.