Skip to content

Commit

Permalink
Merge pull request #104 from samoht/master
Browse files Browse the repository at this point in the history
Prepare a new release
  • Loading branch information
samoht committed Jul 17, 2015
2 parents b5b1bcf + b8611d8 commit fe928c2
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
### 1.6.2 (2015-07-16)

* Support 32 bit platform by avoiding creating large strings. This also improve
the performance of reading and synchronizin large pack files
(#103, @gregtatcam)

### 1.6.1 (2015-07-14)

* Fix a bug in `ogit pull` using the smart HTTP protocol when the HTTP temporary
buffer could sometimes be overfill.
* Avoid closing twice the same fd in the smart HTTP protocol.
Expand Down
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OASISFormat: 0.4
Name: git
Version: 1.6.1
Version: 1.6.2
Synopsis: A low-level interface to Git in pure OCaml
Authors: Thomas Gazagnaire
License: ISC
Expand Down
12 changes: 6 additions & 6 deletions lib/META
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OASIS_START
# DO NOT EDIT (digest: 3ee5a74ae9a67aa27f170212a425eeb3)
version = "1.6.1"
# DO NOT EDIT (digest: b4ab0fa7e782167baf43f54bcdfb0115)
version = "1.6.2"
description = "A low-level interface to Git in pure OCaml"
requires = "mstruct dolog ocamlgraph zip nocrypto uri lwt hex stringext"
archive(byte) = "git.cma"
Expand All @@ -9,7 +9,7 @@ archive(native) = "git.cmxa"
archive(native, plugin) = "git.cmxs"
exists_if = "git.cma"
package "unix" (
version = "1.6.1"
version = "1.6.2"
description = "A low-level interface to Git in pure OCaml"
requires = "git git.http lwt cohttp.lwt lwt.unix conduit.lwt-unix"
archive(byte) = "git-unix.cma"
Expand All @@ -20,7 +20,7 @@ package "unix" (
)

package "top" (
version = "1.6.1"
version = "1.6.2"
description = "Toplevel printers for Git values"
requires = "git"
archive(byte) = "git_top.cma"
Expand All @@ -31,7 +31,7 @@ package "top" (
)

package "mirage" (
version = "1.6.1"
version = "1.6.2"
description = "A low-level interface to Git in pure OCaml"
requires =
"git git.http mirage-types.lwt io-page conduit.mirage dns.mirage mirage-http mirage-flow channel"
Expand All @@ -43,7 +43,7 @@ package "mirage" (
)

package "http" (
version = "1.6.1"
version = "1.6.2"
description = "A low-level interface to Git in pure OCaml"
requires = "git lwt cohttp.lwt uri.services"
archive(byte) = "git-http.cma"
Expand Down
6 changes: 3 additions & 3 deletions lib_test/test_store.ml
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ module Make (Store: Store.S) = struct
let test_clones x () =
let test () =
Store.create ~root () >>= fun t ->
let clone gri head =
let clone ?depth gri head =
x.init () >>= fun () ->
Sync.clone t ?head gri >>= fun _ ->
if Store.kind = `Disk then
Expand Down Expand Up @@ -486,8 +486,8 @@ module Make (Store: Store.S) = struct
clone https None >>= fun () ->
clone git gh_pages >>= fun () ->
clone https gh_pages >>= fun () ->
clone https commit >>= fun () ->
clone git commit >>= fun () ->
clone https ~depth:1 commit >>= fun () ->
clone git ~depth:3 commit >>= fun () ->

Lwt.return_unit
in
Expand Down
6 changes: 3 additions & 3 deletions setup.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(* setup.ml generated for the first time by OASIS v0.4.1 *)

(* OASIS_START *)
(* DO NOT EDIT (digest: dec5082840720d8be545ff07fb976f7d) *)
(* DO NOT EDIT (digest: 9486ec6dd0dba4489ff5bf948d79ceaa) *)
(*
Regenerated by OASIS v0.4.5
Visit http://oasis.forge.ocamlcore.org for more information and
Expand Down Expand Up @@ -6861,7 +6861,7 @@ let setup_t =
alpha_features = [];
beta_features = [];
name = "git";
version = "1.6.1";
version = "1.6.2";
license =
OASISLicense.DEP5License
(OASISLicense.DEP5Unit
Expand Down Expand Up @@ -7302,7 +7302,7 @@ let setup_t =
};
oasis_fn = Some "_oasis";
oasis_version = "0.4.5";
oasis_digest = Some "á\016\146Ì\bU\147\157u«$\025";
oasis_digest = Some "\154ß\014.màýç\026ê¸ÕèLìA";
oasis_exec = None;
oasis_setup_args = [];
setup_update = false
Expand Down

0 comments on commit fe928c2

Please sign in to comment.