Skip to content

Commit

Permalink
Add semver package
Browse files Browse the repository at this point in the history
  • Loading branch information
themue committed Jul 23, 2023
1 parent 244ea50 commit 499a6a4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions stew.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// Tideland Go Stew
//
// Copyright (C) 2023 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.

package stew // import "tideland.dev/go/stew"

//--------------------
// IMPORTS
//--------------------

import (
"tideland.dev/go/stew/semver"

Check failure on line 15 in stew.go

View workflow job for this annotation

GitHub Actions / build

no required module provides package tideland.dev/go/stew/semver; to add it:
)

//--------------------
// VERSION
//--------------------

func Version() *semver.Version {
return semver.NewVersion(0, 1, 0, "alpha", "2023-07-23")
}

// EOF

0 comments on commit 499a6a4

Please sign in to comment.