* release plan for 0.17
@ 2013-10-24 12:51 David Bremner
2013-11-24 1:46 ` David Bremner
0 siblings, 1 reply; 5+ messages in thread
From: David Bremner @ 2013-10-24 12:51 UTC (permalink / raw)
To: notmuch mailing list
Hi Gang;
It's been a while since we had a release. There are some ABI breaking
ideas around, but I think it makes sense to release and then forge
forward with those.
Since I'm moving at a pretty slow pace these days on notmuch (and
everything) I propose the following schedule:
Feature freeze: November 8
Hard freeze: November 22
Release: November 28 (approximately)
Feel free to start tagging things as notmuch:0.17 in nmbug if you think
they can be squeezed in the next few weeks.
d
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: release plan for 0.17
2013-10-24 12:51 release plan for 0.17 David Bremner
@ 2013-11-24 1:46 ` David Bremner
2013-11-30 13:21 ` David Bremner
0 siblings, 1 reply; 5+ messages in thread
From: David Bremner @ 2013-11-24 1:46 UTC (permalink / raw)
To: notmuch mailing list
[-- Attachment #1: Type: text/plain, Size: 577 bytes --]
David Bremner <david@tethera.net> writes:
>
> Feature freeze: November 8
> Hard freeze: November 22
> Release: November 28 (approximately)
This schedule is apparently extremely approximate. I just pushed a tag
0.17_rc1. Notmuch can be considered feature frozen for 0.17 at this
point. Doc changes and (important) bug fixes are still
welcome.
Development can continue on master, but please let me know if you think
I should cherry-pick changes to the release branch; or perhaps better,
let me apply them on release and merge to master.
d
[-- Attachment #2: Type: application/pgp-signature, Size: 664 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: release plan for 0.17
2013-11-24 1:46 ` David Bremner
@ 2013-11-30 13:21 ` David Bremner
2013-11-30 13:53 ` [PATCH] News updates for Mark's bugfixes Mark Walters
0 siblings, 1 reply; 5+ messages in thread
From: David Bremner @ 2013-11-30 13:21 UTC (permalink / raw)
To: notmuch mailing list
I have pushed a tag 0.17_rc2 which has a couple of bug fixes from
0.17_rc1. Unless some serious bug turns up I'd like to release 0.17
next week. People are encouraged to look at
git shortlog 0.16..0.17_rc2
and look for missing NEWS items. My (subjectively) edited version
follows. (P.S. congrats to Mark Walters, who moves in to #4 in the
overall commit race, #1 for this release ;) )
----------------------------------------------------------------------
Blake Jones (4):
getpwuid: check for standards compliance (Solaris support)
strsep: check for availability (Solaris support)
timegm: add portable implementation (Solaris support)
notmuch-config: use strchr(), not index() (Solaris support)
Charlie Allom (1):
vim: run mutt in default term
Gregor Zattler (1):
emacs: distinguish tag `flagged' on terminal
Istvan Marko (1):
emacs: add buttons for all multipart/related parts
John Lenz (1):
cli: add --include-html option to notmuch show
Kevin J. McCarthy (2):
notmuch-mutt: Fix tagging issues
notmuch-mutt: use notmuch --duplicate flag
Louis Rilling (1):
tags_to_maildir_flags: Don't rename if no flags change
Mark Walters (66):
emacs: show: lazy part handling bugfix
emacs: bugfix unquoted symbol
emacs: do not put quoted reply in primary selection
emacs: show: stop stderr appearing in buffer
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] News updates for Mark's bugfixes
2013-11-30 13:21 ` David Bremner
@ 2013-11-30 13:53 ` Mark Walters
2013-12-01 20:57 ` David Bremner
0 siblings, 1 reply; 5+ messages in thread
From: Mark Walters @ 2013-11-30 13:53 UTC (permalink / raw)
To: notmuch
---
Here is the NEWS for my bugfixes. I have not provided a news item for
"emacs: bugfix unquoted symbol" as that was only briefly a bug during
this development cycle: the bug was not present in any release.
Best wishes
Mark
NEWS | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/NEWS b/NEWS
index 3a11dc8..6d03732 100644
--- a/NEWS
+++ b/NEWS
@@ -115,6 +115,26 @@ The `notmuch-tag` function now requires a list of tag changes
changes or a space-separated string of tag changes. The latter is
no longer supported and the function now returns nothing.
+Fixed `notmuch-reply` putting reply in primary selection
+
+ On emacs 24 notmuch-reply used to put the cited text into the
+ primary selection (which could lead to inadvertently pasting this
+ cited text elsewhere). Now the primary-selection is not changed.
+
+Fixed `notmuch-show` invisible part handling
+
+ In some obscure cases part buttons and invisibility had strange
+ interactions: in particular, the default action for some parts gave
+ the wrong action. This has been fixed.
+
+Fixed `notmuch-show` attachment viewers and stderr
+
+ In emacs 24.3+ viewing an attachment could cause spurious text to
+ appear in the show buffer (any stderr or stdout the viewer
+ produced). By default this output is now discarded. For debugging,
+ setting `notmuch-show-attachment-debug` causes notmuch to keep the
+ viewer's stderr and stdout in a separate buffer.
+
Fixed `notmuch-mua-reply` point placement when signature involved
By restricting cursor movement to body section for cursor placement
--
1.7.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] News updates for Mark's bugfixes
2013-11-30 13:53 ` [PATCH] News updates for Mark's bugfixes Mark Walters
@ 2013-12-01 20:57 ` David Bremner
0 siblings, 0 replies; 5+ messages in thread
From: David Bremner @ 2013-12-01 20:57 UTC (permalink / raw)
To: Mark Walters, notmuch
Mark Walters <markwalters1009@gmail.com> writes:
> ---
> Here is the NEWS for my bugfixes. I have not provided a news item for
> "emacs: bugfix unquoted symbol" as that was only briefly a bug during
> this development cycle: the bug was not present in any release.
pushed.
d
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-12-01 20:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-24 12:51 release plan for 0.17 David Bremner
2013-11-24 1:46 ` David Bremner
2013-11-30 13:21 ` David Bremner
2013-11-30 13:53 ` [PATCH] News updates for Mark's bugfixes Mark Walters
2013-12-01 20:57 ` David Bremner
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
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 read-only IMAP folder(s) and NNTP newsgroup(s).