Skip to content
Snippets Groups Projects
Select Git revision
  • a4c71c057874b3781438f301b3f8857a5878f059
  • main default protected
  • v1.298.0
  • v1.297.0
  • v1.296.0
  • v1.295.0
  • v1.294.0
  • v1.293.0
  • v1.292.0
  • v1.291.0
  • v1.290.0
  • v1.289.0
  • v1.288.0
  • v1.287.0
  • v1.286.0
  • v1.285.0
  • v1.284.0
  • v1.283.0
  • v1.282.0
  • v1.281.0
  • v1.280.0
  • v1.279.0
22 results

bobgroup-go-utils

user avatar
Jan Semmelink authored
Added DocumentStore() to search, which will be used in V3 to store orders in OpenSearch then do text searches on them
a4c71c05
History

go-utils

A set of utilities used by our Golang projects

Creating a new tag

When making changes, a new tag needs to be made in order to use the updated library in your project. First pull the tags, and check the latest version.

git pull --tags

git tag

The output will be a list of tags. Create a new tag with the version number increased. E.g. if the last tag was v1.2.7, the new tag could be v1.2.8. Then push the tag.

git tag -a v1.2.8 -m "Tag v1.2.8"

git push --tags

For your project, upgrade to the new version by running the go get command.

go get gitlab.com/uafrica/go-utils@v1.2.8