<feed xmlns='http://www.w3.org/2005/Atom'>
<title>fscrypt.git/Makefile, branch v0.2.6</title>
<subtitle>Go tool for managing Linux filesystem encryption
</subtitle>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/'/>
<entry>
<title>Release version v0.2.6 (#198)</title>
<updated>2020-02-11T07:20:14+00:00</updated>
<author>
<name>Joseph Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2020-02-11T07:20:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=43b4079fd8b52e64d694229311afcbcca0e35b19'/>
<id>43b4079fd8b52e64d694229311afcbcca0e35b19</id>
<content type='text'>
* Release version v0.2.6

Fixes #195

Also, update the encrypted API key.
My person access token had expired, this one should work now.

Signed-off-by: Joe Richey &lt;joerichey@google.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Release version v0.2.6

Fixes #195

Also, update the encrypted API key.
My person access token had expired, this one should work now.

Signed-off-by: Joe Richey &lt;joerichey@google.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Manage tool versioning with Go modules (#161)</title>
<updated>2019-10-26T00:26:49+00:00</updated>
<author>
<name>Joseph Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2019-10-26T00:26:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=a3434e41bd482fc1b35703f66c24c9d1ec3b0be2'/>
<id>a3434e41bd482fc1b35703f66c24c9d1ec3b0be2</id>
<content type='text'>
See: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module

The tool code is never actually built, but the versions are still lock
in `go.mod` and `go.sum`. We can also simplify the Makefile.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module

The tool code is never actually built, but the versions are still lock
in `go.mod` and `go.sum`. We can also simplify the Makefile.</pre>
</div>
</content>
</entry>
<entry>
<title>Delete vendored code and update CI to Go 1.13 (#158)</title>
<updated>2019-10-26T00:15:27+00:00</updated>
<author>
<name>Joseph Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2019-10-26T00:15:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=b24e4ccd245861f7537f17c3e01be2cbefb1b29e'/>
<id>b24e4ccd245861f7537f17c3e01be2cbefb1b29e</id>
<content type='text'>
As the Go community transitions to using the modules ecosystem,
we want to only support one way of managing dependencies.
So this change moves to only using Go modules for dependency management.

This means that our effective minimum Go version increases to Go 1.11.
To account for this, we also update:
  - the documentation
  - Makefile
  - CI scripts</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As the Go community transitions to using the modules ecosystem,
we want to only support one way of managing dependencies.
So this change moves to only using Go modules for dependency management.

This means that our effective minimum Go version increases to Go 1.11.
To account for this, we also update:
  - the documentation
  - Makefile
  - CI scripts</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare v0.2.5 (#147)</title>
<updated>2019-09-12T00:00:09+00:00</updated>
<author>
<name>Joseph Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2019-09-12T00:00:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=672cce613a8b3acf66e0f288206b1fcbff7d41cd'/>
<id>672cce613a8b3acf66e0f288206b1fcbff7d41cd</id>
<content type='text'>
Also add go version attrubute to go.mod</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also add go version attrubute to go.mod</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: exclude generated files from 'make format'</title>
<updated>2019-08-29T04:22:36+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2019-08-29T04:22:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=305e5cd4e92a98c5d1e9a06fa9f424cd4ce40e49'/>
<id>305e5cd4e92a98c5d1e9a06fa9f424cd4ce40e49</id>
<content type='text'>
Due to a goimports update, 'make format' is now changing metadata.pb.go.
But this fix can't be committed because this file is generated by
'make gen'.

Fix this by not formatting generated files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Due to a goimports update, 'make format' is now changing metadata.pb.go.
But this fix can't be committed because this file is generated by
'make gen'.

Fix this by not formatting generated files.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update Travis to use Ubuntu 18.04 and Go 1.12 (#135)</title>
<updated>2019-07-27T01:08:34+00:00</updated>
<author>
<name>Joseph Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2019-07-27T01:08:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=73992db882786db9e2c1ac63f101f77a9d90a0a6'/>
<id>73992db882786db9e2c1ac63f101f77a9d90a0a6</id>
<content type='text'>
Fixes CI issues</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes CI issues</pre>
</div>
</content>
</entry>
<entry>
<title>Install pam modules/configs to the right location</title>
<updated>2019-01-20T03:27:30+00:00</updated>
<author>
<name>Joe Richey</name>
<email>joerichey@google.com</email>
</author>
<published>2019-01-20T03:27:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=ae476d1f2354de43d656d0d3767c2a31017e5985'/>
<id>ae476d1f2354de43d656d0d3767c2a31017e5985</id>
<content type='text'>
Per the FHS, manually installed programs should go under /usr/local.
This change also makes it easier to change the global installation
prefix. For example, package managers should set PREFIX=/usr
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Per the FHS, manually installed programs should go under /usr/local.
This change also makes it easier to change the global installation
prefix. For example, package managers should set PREFIX=/usr
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: migrate from megacheck to staticcheck</title>
<updated>2019-01-18T02:37:35+00:00</updated>
<author>
<name>Joe Richey joerichey@google.com</name>
<email>joerichey@google.com</email>
</author>
<published>2019-01-18T02:15:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=f9a219edd05570b38aa15e7f8d57068a343b6493'/>
<id>f9a219edd05570b38aa15e7f8d57068a343b6493</id>
<content type='text'>
This fixes travis issues as well as moving us off of deprecated tooling
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes travis issues as well as moving us off of deprecated tooling
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: use a specific protoc-gen-go version</title>
<updated>2018-12-04T22:31:20+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2018-12-04T22:31:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=9475b3e930768edb05ae385620580dbf31db14a4'/>
<id>9475b3e930768edb05ae385620580dbf31db14a4</id>
<content type='text'>
'make gen' no longer works because it uses the git version of
protoc-gen-go, which is no longer compatible with the latest released
version of github.com/golang/protobuf/proto, which we're using.  Freeze
the protoc-gen-go version so that it keeps working.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'make gen' no longer works because it uses the git version of
protoc-gen-go, which is no longer compatible with the latest released
version of github.com/golang/protobuf/proto, which we're using.  Freeze
the protoc-gen-go version so that it keeps working.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(spell-check): add make command for spell check.</title>
<updated>2018-09-01T19:47:27+00:00</updated>
<author>
<name>Deepesh Pathak</name>
<email>deepshpathak@gmail.com</email>
</author>
<published>2018-09-01T19:47:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.hodgden.net/cgit.cgi/fscrypt.git/commit/?id=f270dfadb9af9e81ae4c884a3ea45ca4618a7a05'/>
<id>f270dfadb9af9e81ae4c884a3ea45ca4618a7a05</id>
<content type='text'>
* Remove spelling mistakes in the repository
* Add travis script to check for typos.
* Add command to Makefile to check for typos.
* Fixes #71
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Remove spelling mistakes in the repository
* Add travis script to check for typos.
* Add command to Makefile to check for typos.
* Fixes #71
</pre>
</div>
</content>
</entry>
</feed>
