diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-07 14:36:52 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-07 14:36:52 -0400 |
commit | d31e61a90da100e188b45fe033337d405c6a2124 (patch) | |
tree | 638c2d891437324395127baf9c3240c45ddb22df | |
parent | ad9dfe322894763f7013b7a41e0bf9c905cc597c (diff) |
add news item for git-annex 0.16
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | doc/news/version_0.11.mdwn | 8 | ||||
-rw-r--r-- | doc/news/version_0.16.mdwn | 13 | ||||
-rw-r--r-- | test.hs | 2 |
4 files changed, 17 insertions, 12 deletions
diff --git a/debian/changelog b/debian/changelog index ead272dbe..bd986ad24 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -git-annex (0.16) UNRELEASED; urgency=low +git-annex (0.16) unstable; urgency=low * git-annex-shell: Avoid exposing any git repo config except for the annex.uuid when doing configlist. @@ -10,9 +10,9 @@ git-annex (0.16) UNRELEASED; urgency=low about repositories with missing UUIDs. * bugfix: Running `move --to` with a non-ssh remote failed. * bugfix: Running `copy --to` with a non-ssh remote actually did a move. - * Test suite improvements. Current top-level test coverage: 65% + * Many test suite improvements. Current top-level test coverage: 65% - -- Joey Hess <joeyh@debian.org> Tue, 04 Jan 2011 17:33:42 -0400 + -- Joey Hess <joeyh@debian.org> Fri, 07 Jan 2011 14:33:13 -0400 git-annex (0.15) unstable; urgency=low diff --git a/doc/news/version_0.11.mdwn b/doc/news/version_0.11.mdwn deleted file mode 100644 index 03c4d7d54..000000000 --- a/doc/news/version_0.11.mdwn +++ /dev/null @@ -1,8 +0,0 @@ -git-annex 0.11 released with [[!toggle text="these changes"]] -[[!toggleable text=""" - * If available, rsync will be used for file transfers from remote - repositories. This allows resuming interrupted transfers. - * Added remote.annex-rsync-options. - * Avoid deleting temp files when rsync fails. - * Improve detection of version 0 repos. - * Add uninit subcommand. Closes: #[605749](http://bugs.debian.org/605749)"""]]
\ No newline at end of file diff --git a/doc/news/version_0.16.mdwn b/doc/news/version_0.16.mdwn new file mode 100644 index 000000000..3247e302d --- /dev/null +++ b/doc/news/version_0.16.mdwn @@ -0,0 +1,13 @@ +git-annex 0.16 released with [[!toggle text="these changes"]] +[[!toggleable text=""" + * git-annex-shell: Avoid exposing any git repo config except for the + annex.uuid when doing configlist. + * bugfix: Running `move --to` with a remote whose UUID was not yet known + could result in git-annex not recording on the local side where the + file was moved to. This could not result in data loss, or even a + significant problem, since the remote *did* record that it had the file. + * Also, add a general guard to detect attempts to record information + about repositories with missing UUIDs. + * bugfix: Running `move --to` with a non-ssh remote failed. + * bugfix: Running `copy --to` with a non-ssh remote actually did a move. + * Many test suite improvements. Current top-level test coverage: 65%"""]]
\ No newline at end of file @@ -266,7 +266,7 @@ withgitrepo = bracket (setuprepo mainrepodir) return indir :: FilePath -> Assertion -> Assertion indir dir a = do cwd <- getCurrentDirectory - bracket_ (changeToTmpDir $ dir) + bracket_ (changeToTmpDir dir) (\_ -> changeWorkingDirectory cwd) a |