<feed xmlns='http://www.w3.org/2005/Atom'>
<title>beku, branch v0.7.1</title>
<subtitle>Library and program to manage Go packages in user's environment.</subtitle>
<id>http://git.kilabit.info/beku/atom?h=v0.7.1</id>
<link rel='self' href='http://git.kilabit.info/beku/atom?h=v0.7.1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/'/>
<updated>2022-01-30T04:50:56Z</updated>
<entry>
<title>Release beku v0.7.1 (2022-01-30)</title>
<updated>2022-01-30T04:50:56Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-01-30T04:50:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=a8e38e2232a1b763fb27c707826c16a89af4772f'/>
<id>urn:sha1:a8e38e2232a1b763fb27c707826c16a89af4772f</id>
<content type='text'>
This is the last release for v0 of beku.
The next release will pivot the beku program to maintain Go versions.

## Chores

*  go.mod: update all dependencies

   This changes affect code that use lib/test.Assert().

*  all: simplify running linter

   Instead of enabling all linters, run the default linter provided by
   the latest golangci-lint.

*  all: replace beku_test in testdata with gitsubmodule

   Previously, the beku_test is bare clone of git repository stored as is.
   This cause an initial clone of the beku repository itself does not
   recognize it as git repository, which make the test fail:

     go test -v -coverprofile=cover.out ./... || rm -f cover.out
     fatal: '/home/ms/go/src/git.sr.ht/~shulhan/beku/testdata/beku_test.git' does not appear to be a git repository
     fatal: Could not read from remote repository.

     Please make sure you have the correct access rights
     and the repository exists.
     2022/01/30 10:56:19 gitInstall: Clone: exit status 128
     FAIL    github.com/shuLhan/beku 0.008s

   This changes make the testdata/beku_test.git as git submodule, to make
   the test run well.
</content>
</entry>
<entry>
<title>go.mod: update all dependencies</title>
<updated>2022-01-30T04:43:05Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-01-30T04:43:05Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=1cf06e6b9d8254600ff997c681f36514a501afa4'/>
<id>urn:sha1:1cf06e6b9d8254600ff997c681f36514a501afa4</id>
<content type='text'>
This changes affect code that use lib/test.Assert().
</content>
</entry>
<entry>
<title>all: simplify running linter</title>
<updated>2022-01-30T04:34:47Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-01-30T04:34:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=d07445081f511dd2abb559971f2fb399793b95cf'/>
<id>urn:sha1:d07445081f511dd2abb559971f2fb399793b95cf</id>
<content type='text'>
Instead of enabling all linters, run the default linter provided by
the latest golangci-lint.
</content>
</entry>
<entry>
<title>all: replace beku_test in testdata with gitsubmodule</title>
<updated>2022-01-30T04:33:37Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2022-01-30T04:33:37Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=b6c96bbfd14baff70932dd9fb4722d8e32f38a58'/>
<id>urn:sha1:b6c96bbfd14baff70932dd9fb4722d8e32f38a58</id>
<content type='text'>
Previously, the beku_test is bare clone of git repository stored as is.
This cause an initial clone of the beku repository itself does not
recognize it as git repository, which make the test fail:

  go test -v -coverprofile=cover.out ./... || rm -f cover.out
  fatal: '/home/ms/go/src/git.sr.ht/~shulhan/beku/testdata/beku_test.git' does not appear to be a git repository
  fatal: Could not read from remote repository.

  Please make sure you have the correct access rights
  and the repository exists.
  2022/01/30 10:56:19 gitInstall: Clone: exit status 128
  FAIL    github.com/shuLhan/beku 0.008s

This changes make the testdata/beku_test.git as git submodule, to make
the test run well.
</content>
</entry>
<entry>
<title>all: fix linter warnings</title>
<updated>2019-12-27T14:45:51Z</updated>
<author>
<name>Shulhan</name>
<email>m.shulhan@gmail.com</email>
</author>
<published>2019-12-27T14:45:51Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=b5f28512de8cf3fcc7fe31fb7c11570816f86a0f'/>
<id>urn:sha1:b5f28512de8cf3fcc7fe31fb7c11570816f86a0f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Makefile: disable unused linters on lint task</title>
<updated>2019-12-27T14:45:14Z</updated>
<author>
<name>Shulhan</name>
<email>m.shulhan@gmail.com</email>
</author>
<published>2019-12-27T14:45:14Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=a35233a2804d6112077157bd15038662107eb2ac'/>
<id>urn:sha1:a35233a2804d6112077157bd15038662107eb2ac</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Release v0.7.0</title>
<updated>2019-06-28T06:14:09Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2019-06-28T06:14:09Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=92114a84e5839ae04e4a239862852246a42c2061'/>
<id>urn:sha1:92114a84e5839ae04e4a239862852246a42c2061</id>
<content type='text'>
</content>
</entry>
<entry>
<title>env: fix missing exclude, deps, required-by, and missing statements</title>
<updated>2019-06-24T17:12:34Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2019-06-24T17:11:44Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=c645b6dc47677d3fe4de55fc7d574a76841c3f16'/>
<id>urn:sha1:c645b6dc47677d3fe4de55fc7d574a76841c3f16</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: update package share from v0.6.1 to v0.7.0</title>
<updated>2019-06-18T07:49:16Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2019-06-18T07:49:16Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=2c0156f2a03febd7d05518ef2d155a060b9b03e8'/>
<id>urn:sha1:2c0156f2a03febd7d05518ef2d155a060b9b03e8</id>
<content type='text'>
This update bring new change on how to use the ini package.
</content>
</entry>
<entry>
<title>package: add $GOCACHE and $HOME to environments on GoInstall</title>
<updated>2019-06-09T10:44:45Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2019-06-09T10:44:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/beku/commit/?id=560b26738f6632d1f59c80408e4eb0920f62cbb2'/>
<id>urn:sha1:560b26738f6632d1f59c80408e4eb0920f62cbb2</id>
<content type='text'>
The latest Go release will require $GOCACHE or $HOME environment variable
upon running "go install" command.
</content>
</entry>
</feed>
