From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752308AbdHATot (ORCPT ); Tue, 1 Aug 2017 15:44:49 -0400 Received: from pb-smtp1.pobox.com ([64.147.108.70]:53602 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752090AbdHATor (ORCPT ); Tue, 1 Aug 2017 15:44:47 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:date:message-id:mime-version:content-type :content-transfer-encoding; q=dns; s=sasl; b=vY23WFlqah/uwyJBTJ0 S5t4Ctm9QmzkUTtJVgNH5X1bZ8wzj7tlDoy56kdeDqpVlV82kaROFWYbUbjXfeUL KbTxNGsVNq3MFLKMZobFwrImHcQ5K5rr9VqnlhBb0fNUvoL6dexZ6E2jsdkpImMp ktWN1+oe1gV04diBpPFHq7FM= From: Junio C Hamano To: git@vger.kernel.org Cc: Linux Kernel Subject: [ANNOUNCE] Git v2.13.4 Date: Tue, 01 Aug 2017 12:44:44 -0700 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 X-Pobox-Relay-ID: DEF4D4B0-76F1-11E7-B06D-FE4B1A68708C-77302942!pb-smtp1.pobox.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by nfs id v71JisOV020920 The latest maintenance release Git v2.13.4 is now available at the usual places. There is no update that is particulary important or controversial in this release; it is primarily to flush the safer fixes that have already been in the 'master' branch in preparation for the v2.14.0 release down to the maintenance track. The tarballs are found at: https://www.kernel.org/pub/software/scm/git/ The following public repositories all have a copy of the 'v2.13.4' tag and the 'maint' branch that the tag points at: url = https://kernel.googlesource.com/pub/scm/git/git url = git://repo.or.cz/alt-git.git url = https://github.com/gitster/git ---------------------------------------------------------------- Git v2.13.4 Release Notes ========================= Fixes since v2.13.3 ------------------- * Update the character width tables. * A recent update broke an alias that contained an uppercase letter, which has been fixed. * On Cygwin, similar to Windows, "git push //server/share/repository" ought to mean a repository on a network share that can be accessed locally, but this did not work correctly due to stripping the double slashes at the beginning. * The progress meter did not give a useful output when we haven't had 0.5 seconds to measure the throughput during the interval. Instead show the overall throughput rate at the end, which is a much more useful number. * We run an early part of "git gc" that deals with refs before daemonising (and not under lock) even when running a background auto-gc, which caused multiple gc processes attempting to run the early part at the same time. This is now prevented by running the early part also under the GC lock. Also contains a handful of small code and documentation clean-ups. ---------------------------------------------------------------- Changes since v2.13.3 are as follows: Beat Bolli (1): unicode: update the width tables to Unicode 10 Eric Wong (1): set FD_CLOEXEC properly when O_CLOEXEC is not supported Jeff King (2): gc: run pre-detach operations under lock t: handle EOF in test_copy_bytes() Johannes Schindelin (2): t1300: demonstrate that CamelCased aliases regressed alias: compare alias name *case-insensitively* Jonathan Nieder (1): pre-rebase hook: capture documentation in a <