List for cgit developers and users
 help / color / mirror / Atom feed
* [ANNOUNCE] CGIT v1.1 Released
@ 2016-11-23  4:39 Jason
  2016-11-24 19:01 ` john
  0 siblings, 1 reply; 3+ messages in thread
From: Jason @ 2016-11-23  4:39 UTC (permalink / raw)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Hi folks,

CGit 1.1 is now available. This is mainly a bug fix and stability release, but
there are a few nice new features this release too. This release cycle has
also seen an improvement in contribution workflow. Several cgit core
developers now share the task of integrating user contributions, which we hope
will decrease submit-to-review-to-merge latency.

== CGit on the Web ==

* homepage: https://git.zx2c4.com/cgit/about/
* git repository: https://git.zx2c4.com/cgit/
* git clone: git://git.zx2c4.com/cgit
* mailing list: cgit at lists.zx2c4.com
* mailing list subscribe: https://lists.zx2c4.com/mailman/listinfo/cgit

== ChangeLog v1.1 ==

30 files changed, 389 insertions(+), 319 deletions(-)

Notable Changes:

* Single-child trees are now elided into single links. Instead of having to
  click through depths of links, now a single link will to to the maximum
  point of depth.

* Continuing our commitment to supporting kernel.org, we've adopted some of
  their style changes in our CSS, now allowing for colored even/odd table rows
  with a nice hover effect.

* Snapshot name prettification is now consistent, so that the 'v' prefix
  stripping only occurs when it won't create any collisions. This is a slight
  change of behavior, but I imagine cases of folks relying on the old broken
  behavior are few and far between.

* We now use Git 2.10.2 internally, which has brought with it numerous
  cleanups and a gradual shift away from 20 byte uchar arrays and toward the
  newer "object_id" structure.

== Downloading ==

* https://git.zx2c4.com/cgit/snapshot/cgit-1.1.tar.xz sha256:
0889af29be15fc981481caa09579f982b9740fe9fd2860ab87dff286f4635890

* For verification git tag v1.1 is signed with my public key:
  zx2c4.com/keys/AB9942E6D4A4CFC3412620A749FC7012A5DE03AE.asc

Thanks to everyone who contributed to this release!

Jason Donenfeld



-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEq5lC5tSkz8NBJiCnSfxwEqXeA64FAlg1HTsACgkQSfxwEqXe
A65/eA//Y0b2rVaPvwFuUbf3QEI2lm9yxgf5P2yzHGrbaHxeUjpzU57rpw39Xg6w
6SGwiu6ulSinVbz4deUUhvIfW8O9HoSGGnzLokePNosmIDyFreiHZUkp0looFspU
n22jLdcMgTt2ZsV0U6sReCD4fsrprs3pwlGQVUapshDP5laLo9xPiWNREMF7fJzi
BxFzsCO2jVM9L19tNVXkfJzSo+h/RqUD8lXh2HY0t8vCp44+23Mipx/rLgveWA8l
gpT0P5kcyFbD6j1WVZOUDaQG5BEGoPpZlCc8XaAdv574dznSfkTV2iO3JvqVtJn6
pJr1PXZVPsYY9n0NKmPPmj/Nv42ZhrfRnvfXpMPHRFyM890rHy7fksi2MhYo8hkK
ztKbcRx8zdI9mpcrZP3+ECgWY0AmgywWdeGYq5/3uBpPLhqXKCGNqh0+sraDC+/H
zk07Epl3cOsHXCphqJu9XSBNkr8XHSpZi/ifpK6aVtoz7GVK9+qnmH9lWUAvuzsq
w7sSj5R+onLsrn3X8RDkyp/rnIA9Duf+MpvHS6xqeYInjvBB4bwdhVfN4Ns+cYjf
6/u4r0+mlDyLn24gXzELUNW3wy4R7QgWcw5ZX0ItGKooOlRkYOmgrMyeeBNwaMs+
0BIA91TAsWpNIWUs0Dyhj/BnoEO5vf8iO+nE2CFpOAuats+Pj00=
=Dmc4
-----END PGP SIGNATURE-----


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [ANNOUNCE] CGIT v1.1 Released
  2016-11-23  4:39 [ANNOUNCE] CGIT v1.1 Released Jason
@ 2016-11-24 19:01 ` john
  2016-11-24 20:28   ` Jason
  0 siblings, 1 reply; 3+ messages in thread
From: john @ 2016-11-24 19:01 UTC (permalink / raw)


On Wed, Nov 23, 2016 at 05:39:27AM +0100, Jason A. Donenfeld wrote:
> * We now use Git 2.10.2 internally, which has brought with it numerous
>   cleanups and a gradual shift away from 20 byte uchar arrays and toward the
>   newer "object_id" structure.

Not quite - it looks like you accidently regressed the submodule in the
commit that bumps the version!  So submodule users get 2.10.1 and those
using "make get-git" do get 2.10.2.

I've pushed the following patch to jk/for-jason.

-- >8 --
Subject: [PATCH] git: update to v2.10.2 again

The submodule was accidentally downgraded in commit 8e9ddd21 (Bump
version, 2016-11-23).  Restore v2.10.2 so it matches the makefile again.

Signed-off-by: John Keeping <john at keeping.me.uk>
---
 git | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/git b/git
index 6406bdc..ac84098 160000
--- a/git
+++ b/git
@@ -1 +1 @@
-Subproject commit 6406bdc0b95715a087fdeeb0f6adf3deb80a25b8
+Subproject commit ac84098b7e32406a982ac01cc76a663d5605224b
-- 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [ANNOUNCE] CGIT v1.1 Released
  2016-11-24 19:01 ` john
@ 2016-11-24 20:28   ` Jason
  0 siblings, 0 replies; 3+ messages in thread
From: Jason @ 2016-11-24 20:28 UTC (permalink / raw)


Jeeze louise, nice catch. Thanks. Merged.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-11-24 20:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-23  4:39 [ANNOUNCE] CGIT v1.1 Released Jason
2016-11-24 19:01 ` john
2016-11-24 20:28   ` Jason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).