# HG changeset patch # User Oleksandr Gavenko # Date 1444747846 -10800 # Node ID 47ae3d88a59d0cb8fe81681042a4f9496e4ef21b # Parent af5b8800686ba4b2a82066bda3577ce3836247a4 Use more conventional tag naming schema. diff -r af5b8800686b -r 47ae3d88a59d .hgtags --- a/.hgtags Tue Oct 13 17:46:10 2015 +0300 +++ b/.hgtags Tue Oct 13 17:50:46 2015 +0300 @@ -1,5 +1,5 @@ -a045e7eb31a4c185b006255dad15e6cc0543b902 t0.1 -8032e547454e60b908bc90451ba2fb6c865c9ae2 t0.2 -616ec3bdbeeb57d9f1a92c3b4d099a8636bd5fbc t0.3 -9af5606f4e76684cf87634bc69bf2d2afb23a200 t0.4 -40f8ce8919691617e5978d4d82bd4f58798b4b61 t0.5 +a045e7eb31a4c185b006255dad15e6cc0543b902 v0.1 +8032e547454e60b908bc90451ba2fb6c865c9ae2 v0.2 +616ec3bdbeeb57d9f1a92c3b4d099a8636bd5fbc v0.3 +9af5606f4e76684cf87634bc69bf2d2afb23a200 v0.4 +40f8ce8919691617e5978d4d82bd4f58798b4b61 v0.5 diff -r af5b8800686b -r 47ae3d88a59d CHANGES.rst --- a/CHANGES.rst Tue Oct 13 17:46:10 2015 +0300 +++ b/CHANGES.rst Tue Oct 13 17:50:46 2015 +0300 @@ -12,14 +12,14 @@ .. include:: VERSION.rst -tag:t0.6, 2015-10-13. -===================== +v0.6, 2015-10-13. +================= * VOA dictionary in print form. * Miscellaneous supplementary info. -tag:t0.5, 2012-07-13. -===================== +v0.5, 2012-07-13. +================= * VOA "Special English Word Book" thesaurus was added. * GoldenDict installation instruction was added. @@ -28,28 +28,28 @@ * Removed outdated data. * Added a lot on exceptions for English spelling rules. -tag:t0.4, 2012-07-10. -===================== +v0.4, 2012-07-10. +================= * English spelling rules guide was imported from gavenkoa personal ``tips`` project. This guide is main source for word transcription. * Improved home page appearance. * Fixed for ``dist``-like targets was fixed build dependencies. -tag:t0.3, 2012-01-15. -===================== +v0.3, 2012-01-15. +================= * Fix misc issue in deploy targets. -tag:t0.2, 2012-01-15. -===================== +v0.2, 2012-01-15. +================= * Add target to check of release sanity. * Include article count statistics in release docs. * Fix source release target (dictionary files are missing). -tag:t0.1, 2012-01-12. -===================== +v0.1, 2012-01-12. +================= * First public release. * Summary nearly 800 words in all dictionaries. diff -r af5b8800686b -r 47ae3d88a59d Makefile --- a/Makefile Tue Oct 13 17:46:10 2015 +0300 +++ b/Makefile Tue Oct 13 17:50:46 2015 +0300 @@ -59,7 +59,7 @@ vtagdist=$$(hg log -r . --template '{latesttagdistance}'); \ vatrelease=$$([ $$vtagdist -le 1 ] && echo yes || echo no); \ vtag=$$(hg log -r . --template '{latesttag}'); \ -vmajor=$${vtag#t}; \ +vmajor=$${vtag#v}; \ vmajor=$${vmajor%%.*}; \ vminor=$${vtag#*.}; \ vrev=$$(hg id -i); \