Title: Versioning and Package Management Desc: aah releases per Semantic Versioning. aah commits to provide stable release version of framework and it's libraries. Keywords: versioning, package management, stable version, release version
aah releases per Semantic Versioning. Since v0.12.0 aah uses Go modules fully as a package management to provide stable release version of framework and it's libraries.
For framework v0.11.4
and below versions, aah internally uses gopkg.in
service codebase to provide versioning support on top of package management tools.
go.mod
require aahframe.work v0.12.0
Import Usage
import "aahframe.work"
aah codebase is hosted on Github and Development happens on branch edge
and branch master
is tidy codebase of each release. Github tags
are stable and production ready.
Since v0.12.0 aah uses Go modules fully as a package management. aah HIGHLY RECOMMENDS you to use go.mod
.
Command aah new
generates new aah application with go.mod
definitions.