2025-04-01  Florent Rougon  <f.rougon@frougon.net>

	Release 1.0.6

2025-04-01  Florent Rougon  <f.rougon@frougon.net>

	Change imports in tests to allow running without the '-s' option

	With this change, the automated tests can be run with
	'python3 -m unittest' rather than 'python3 -m unittest -s tests'. This
	will simplify downstream packaging (by distro maintainers).

2025-04-01  Florent Rougon  <f.rougon@frougon.net>

	Update documentation and change http:// links to https://

2025-04-01  Florent Rougon  <f.rougon@frougon.net>

	Fix warnings

	Fix a runtime SyntaxWarning due to an unhandled '\e' escape sequence and
	other warnings obtained when building the documentation with Sphinx.

	The 'html_domain_indices' change is not involved in any warning, I'm
	just restoring it to its default value which appears to be True
	nowadays. I don't see any difference between True and False on this
	document.

2025-03-31  Florent Rougon  <f.rougon@frougon.net>

	Move to "src layout"; remove setup.py, use pyproject.toml instead

	More modern packaging that uses the setuptools build backend (in
	particular, this favors metadata in the pyproject.toml file over code in
	setup.py). Pros and cons of the "src layout" can be found at [1]. Our
	lovely VersionInfo class had to go, alas...

	[1] https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/

2025-03-30  Florent Rougon  <f.rougon@frougon.net>

	Small changes to MANIFEST.in and doc/conf.py

2020-06-02  Florent Rougon  <f.rougon@free.fr>

	Release 1.0.5

	There is no code change in this release. One might have named it
	1.0.4.post1, but I believe 1.0.5 is less likely to cause confusion or
	trouble with tools dealing with the version number in an automated way.

2020-06-02  Florent Rougon  <f.rougon@free.fr>

	Update instructions in README.rst and INSTALL.txt

2020-06-01  Florent Rougon  <f.rougon@free.fr>

	setup.py: specify python_requires="~=3.4"

2020-05-29  Florent Rougon  <f.rougon@free.fr>

	Release 1.0.4

	* CondConfigParser is now available in wheel format too.

2020-05-29  Florent Rougon  <f.rougon@free.fr>

	Refresh setup.py and README.rst

	Add /build/ to .gitignore

	Replace old https://pypi.python.org/... URLs with https://pypi.org/... ones

2020-05-29  Florent Rougon  <f.rougon@free.fr>

	Use an https URL for intersphinx_mapping

	* doc/conf.py: use an https URL for the 'intersphinx_mapping' variable.

2016-04-30  Florent Rougon  <f.rougon@free.fr>

	Release 1.0.3

	setup.py: declare Python 3.5 as a supported version

2016-04-30  Florent Rougon  <f.rougon@free.fr>

	Update the CondConfigParser and FFGo home pages

	* CondConfigParser's old home page:

	    http://people.via.ecp.fr/~flo/projects/CondConfigParser/

	  CondConfigParser's new home page:

	    http://frougon.net/projects/CondConfigParser/

	* FFGo's old home page:

	    http://people.via.ecp.fr/~flo/projects/FFGo/

	  FFGo's new home page:

	    http://frougon.net/projects/FFGo/

2016-04-30  Florent Rougon  <f.rougon@free.fr>

	README.rst: replace "Debian packages" with "Debian package"

2015-08-29  Florent Rougon  <f.rougon@free.fr>

	Release 1.0.2

2015-08-29  Florent Rougon  <f.rougon@free.fr>

	Update INSTALL.txt and README.rst (Debian packages...)

	* README.rst: mention the Debian packages

	* INSTALL.txt: mention the Debian packages and improve the description
	of the 'setup.py install' method (yup, the "old" one).

2015-08-29  Florent Rougon  <f.rougon@free.fr>

	Mention FFGo along with FGo! in doc/glossary.rst

	Declare "Development Status :: 5 - Production/Stable" in setup.py

2015-08-23  Florent Rougon  <f.rougon@free.fr>

	Release 1.0.1

2015-08-23  Florent Rougon  <f.rougon@free.fr>

	Set needs_sphinx = '1.3' and html_theme = 'classic' for the doc

	* This is to cope with the change of the default theme in Sphinx 1.3.

2015-01-13  Florent Rougon  <f.rougon@free.fr>

	Update the TODO file

	Minor documentation improvements

2015-01-12  Florent Rougon  <f.rougon@free.fr>

	Don't ship doc/basic-pkg-info.rst in release tarballs

	* Being automatically generated from README.rst, this file does not need
	to be shipped anymore.

2015-01-12  Florent Rougon  <f.rougon@free.fr>

	Release 1.0.0

2015-01-12  Florent Rougon  <f.rougon@free.fr>

	Minor documentation improvements

	* doc/prepare-basic-pkg-info.py: format a note about how to run
	prepare-basic-pkg-info.py with the Sphinx's 'note' directive (automatic
	replacement on each execution).

	* README.rst: minor change

2015-01-12  Florent Rougon  <f.rougon@free.fr>

	Automatic generation of doc/basic-pkg-info.rst from README.rst

	* README.rst used to be generated from doc/basic-pkg-info_start.rst and
	doc/basic-pkg-info.rst. These two last files are removed by this commit,
	but a Python script, doc/prepare-basic-pkg-info.py, is provided and
	automatically used by doc/Makefile in order to generate
	doc/basic-pkg-info.rst from README.rst.

	* This makes the release notes more visible from a Git clone of the
	repository as well as for people visiting
	<https://github.com/frougon/CondConfigParser>.

	* setup.py doesn't need to generate README.rst anymore.

	* In order to explicitely choose the interpreter to use when the
	Makefile runs prepare-basic-pkg-info.py, one can do for instance:

	  make PYTHON=python3.4 html

	from the 'doc' directory.

2015-01-12  Florent Rougon  <f.rougon@free.fr>

	Minor changes to doc/basic-pkg-info-toc.rst

	* Most notably, replace 'README.txt' with 'README.rst' (typo).

2015-01-11  Florent Rougon  <f.rougon@free.fr>

	Add README.rst to the repository

	* This is necessary for correct display on GitHub.

2015-01-11  Florent Rougon  <f.rougon@free.fr>

	Release 1.0.0rc1

	Add some polish to the documentation

2015-01-11  Florent Rougon  <f.rougon@free.fr>

	Remove exec permissions from condconfigparser/tests/test_condconfig.py

	* These permissions are not useful. If one wants to run the tests from
	this file only, one can do:

	  python3 -m condconfigparser.tests.test_condconfig

	from the root directory of the CondConfigParser distribution. This
	requires no exec permission.

2015-01-11  Florent Rougon  <f.rougon@free.fr>

	Add missing import to setup.py

2015-01-10  Florent Rougon  <f.rougon@free.fr>

	Initial import into the Git repository
