Removed statistic data from .idea second try

This commit is contained in:
David Vennik
2022-11-16 21:19:02 +01:00
parent d408d8d00a
commit 654b1be163
3 changed files with 5 additions and 11 deletions

2
.gitignore vendored
View File

@@ -19,4 +19,4 @@
/.idea/.gitignore
/.idea/indra.iml
/.idea/codeStyles/codeStyleConfig.xml
/.idea/statistic.xml
/.idea/**

6
.idea/statistic.xml generated
View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Statistic">
<option name="activateWhenOpenProject" value="true" />
</component>
</project>

View File

@@ -10,11 +10,11 @@ var (
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/main"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "bfc891be5423dc84eff4133d08e9eaa314e9ad3e"
ParentGitCommit = "f011ee52a0e2ebeda4383fdc47240e3b873226eb"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-11-16T21:17:28+01:00"
BuildTime = "2022-11-16T21:19:02+01:00"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.102"
SemVer = "v0.0.103"
// PathBase is the path base returned from runtime caller.
PathBase = "/home/loki/src/github.com/Indra-Labs/indra/"
// Major is the major number from the tag.
@@ -22,7 +22,7 @@ var (
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 102
Patch = 103
)
// Version returns a pretty printed version information string.