Re: [fossil-users] Getting a list of what's changed since the last release

2014-07-18 Thread Stephan Beal
On Fri, Jul 18, 2014 at 8:39 PM, Warren Young war...@etr-usa.com wrote: When I am assembling a new software release, I assemble a ChangeLog from the checkin comments since the last release. Prior to moving to Fossil, I used svn log -r12345:HEAD for this. That lists the checkin comments from

Re: [fossil-users] Getting a list of what's changed since the last release

2014-07-18 Thread Richard Hipp
On Fri, Jul 18, 2014 at 2:39 PM, Warren Young war...@etr-usa.com wrote: When I am assembling a new software release, I assemble a ChangeLog from the checkin comments since the last release. On SQLite and on Fossil I do this: http://www.sqlite.org/src/timeline?a=releaset=trunkn=1000

Re: [fossil-users] Getting a list of what's changed since the last release

2014-07-18 Thread Stephan Beal
On Fri, Jul 18, 2014 at 8:43 PM, Stephan Beal sgb...@googlemail.com wrote: Here's how we do it for fossil releases: http://www.fossil-scm.org/fossil/vdiff?from=releaseto=trunkdetail=1 Correction: that's the diff for that range. Richard's solution gives you the commit comments. -- -

Re: [fossil-users] Getting a list of what's changed since the last release

2014-07-18 Thread Ron W
On Fri, Jul 18, 2014 at 2:39 PM, Warren Young war...@etr-usa.com wrote: When I am assembling a new software release, I assemble a ChangeLog from the checkin comments since the last release. Prior to moving to Fossil, I used svn log -r12345:HEAD for this. That lists the checkin comments from

Re: [fossil-users] Getting a list of what's changed since the last release

2014-07-18 Thread Warren Young
On 7/18/2014 13:05, Ron W wrote: fossil timeline after | perl -n -e print if /tags: .*branchname/; That only works if your commit messages are so short they don't cause a line wrap. I use an 80 column terminal window (old timer, me) so it doesn't take much to cause a wrap. I tried

Re: [fossil-users] Getting a list of what's changed since the last release

2014-07-18 Thread Warren Young
On 7/18/2014 12:44, Richard Hipp wrote: http://www.sqlite.org/src/timeline?a=releaset=trunkn=1000 I think clicking the branch from fossil ui then appending a=AFTERSPEC will work for me: http://server:port/repo/timeline?r=BRANCHNAMEa=AFTERSPEC Today I also learned you can say fossil

Re: [fossil-users] Getting a list of what's changed since the last release

2014-07-18 Thread Ron W
On Fri, Jul 18, 2014 at 3:34 PM, Warren Young war...@etr-usa.com wrote: On 7/18/2014 13:05, Ron W wrote: fossil timeline after | perl -n -e print if /tags: .*branchname/; That only works if your commit messages are so short they don't cause a line wrap. I use an 80 column terminal

Re: [fossil-users] Getting a list of what's changed since the last release

2014-07-18 Thread Kees Nuyt
[Default] On Fri, 18 Jul 2014 13:34:26 -0600, Warren Young war...@etr-usa.com wrote: On 7/18/2014 13:05, Ron W wrote: fossil timeline after | perl -n -e print if /tags: .*branchname/; That only works if your commit messages are so short they don't cause a line wrap. I use an 80 column