Browse Source

Add READMEs for old versions

Achilleas Koutsou 6 years ago
parent
commit
9619ce12a0
3 changed files with 38 additions and 0 deletions
  1. 9 0
      v0.10/README.md
  2. 13 0
      v0.11/README.md
  3. 16 0
      v0.9/README.md

+ 9 - 0
v0.10/README.md

@@ -0,0 +1,9 @@
+Version 0.10 release notes
+=========================
+
+Bugfixes
+--------
+
+Minor bugfixes and improvements.
+
+Improved the performance of `gin ls` when querying specific files.

+ 13 - 0
v0.11/README.md

@@ -0,0 +1,13 @@
+Version 0.11 release notes
+=========================
+
+Local config files
+----------------------
+
+The client now supports local, per-repo configuration files. Options specified in a file called `config.yml` in the root of a repository will override options from the global and default configurations.
+
+Bugfixes
+--------
+
+- Fixed issue where some git implementations would continuously try to use the user's key instead of the one generated by gin (macOS)
+- Fixed issue which caused very slow responses on Windows when repositories became too large.

+ 16 - 0
v0.9/README.md

@@ -0,0 +1,16 @@
+Version 0.9 release notes
+=========================
+
+Check files into git
+--------------------
+When adding files (via `gin upload`) the client will now check small files (smaller than 10 MiB by default) into git instead of annex. This threshold can be configured in the config file. Additionally, file patterns (globs) can be specified for exclusion from annex. Any files that match a pattern or is below the *small file* threshold, will be checked into git rather than the annex.
+
+This behaviour also works in direct mode.
+
+SSH keys on login
+-----------------
+Instead of generating temporary SSH keys for each transaction, a single key pair is created when a user logs in and is deleted when they log out.
+
+Annex version check
+-------------------
+The client will no longer work if it cannot find a git-annex binary, or its version is too old (current minimum version: 6.20160126)