<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Kconfiglib.git/setup.py, branch v4.0.0</title>
<subtitle>Fork of https://github.com/zephyrproject-rtos/Kconfiglib.git</subtitle>
<id>https://git.mcdonnell.dev/Kconfiglib.git/atom?h=v4.0.0</id>
<link rel='self' href='https://git.mcdonnell.dev/Kconfiglib.git/atom?h=v4.0.0'/>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/'/>
<updated>2018-03-11T07:11:56Z</updated>
<entry>
<title>Make 4.0.0 release</title>
<updated>2018-03-11T07:11:56Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-03-11T07:11:56Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=44f782723b71e4eb4661e61cc6f887aefe00898e'/>
<id>urn:sha1:44f782723b71e4eb4661e61cc6f887aefe00898e</id>
<content type='text'>
Includes a small API behavior change, hence the major version bump:

 - db63301 ("Return "" for unwritten symbols in Symbol.config_string")

New features:

 - Support for incremental builds using the same scheme as the
   include/config/ directory in the C tools. See the new
   Kconfig.sync_deps() function and commit 378dedc ("Add support for
   incremental builds").

 - Minimal configuration (defconfig) writing, generating identical files
   to the C implementation. See commit 652f11b ("Add minimal
   configuration file generation support").

   The C 'make savedefconfig' implementation is currently broken in
   obscure cases involving tristate choices (due to broken invalidation
   code), so the tests are disabled for now. I have a patch for the C
   implementation that I will submit.

Fixes:

 - user_value wasn't set for choice symbols set to y via load_config()
   with replace=True. Fixed by commit 0bd841d ("Properly remember y user
   values for choice symbols"). Didn't affect correctness, only the API.

Other changes:

 - 778ec47 ("Only write '# CONFIG_FOO is not set' for visible symbols")
   mirrors a change I made to the C tools.

 - bbe3ae9 ("Do not write the defconfig_list symbol to .config") mirrors
   another change made to the C tools.

 - Misc. refactoring and cleanup.
</content>
</entry>
<entry>
<title>Make 3.2.0 release</title>
<updated>2018-02-27T08:24:29Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-02-27T08:24:29Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=7a1f632774c01adf4382c2d8d80859a92f78f33d'/>
<id>urn:sha1:7a1f632774c01adf4382c2d8d80859a92f78f33d</id>
<content type='text'>
Adds a Kconfig extension contributed by RomaVis: aea0232 ("Implement
'rsource' statement ('source' with relative path)").
</content>
</entry>
<entry>
<title>Make 3.1.0 release</title>
<updated>2018-02-16T09:15:50Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-02-16T09:15:50Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=ce43e322b57c9c62999d8941f677e5ba2f455047'/>
<id>urn:sha1:ce43e322b57c9c62999d8941f677e5ba2f455047</id>
<content type='text'>
Only includes 2a88c0c ("Include direct deps. in
Symbol/Choice.__str__()").
</content>
</entry>
<entry>
<title>Make 3.0.0 release</title>
<updated>2018-02-08T09:18:18Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-02-08T09:18:18Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=f54c6b6d453361948a9169081d9140ee5935b9f7'/>
<id>urn:sha1:f54c6b6d453361948a9169081d9140ee5935b9f7</id>
<content type='text'>
 - Only includes e8b4ecb ("Don't special-case user_value for choice
   symbols set to y").

Since that's a tiny change to the behavior of the API, the major version
is bumped.
</content>
</entry>
<entry>
<title>Make 2.7.0 release</title>
<updated>2018-02-07T03:30:19Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-02-07T02:58:50Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=4b31adf8efbb5341c369b32022401df65f419362'/>
<id>urn:sha1:4b31adf8efbb5341c369b32022401df65f419362</id>
<content type='text'>
Just adds f66cd71 ("Allow "n"/"m"/"y" as aliases for 0/1/2 in
set_value()").
</content>
</entry>
<entry>
<title>Make 2.6.0 release</title>
<updated>2018-01-30T10:10:51Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-01-30T10:10:51Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=1e40733b7caff0a5f84eee6775e851e1d32f95a9'/>
<id>urn:sha1:1e40733b7caff0a5f84eee6775e851e1d32f95a9</id>
<content type='text'>
This release tightens up syntax checking and adds all the warnings
generated by the C implementation (plus a few extra ones), making
Kconfiglib more viable as a replacement for the C tools, rather than
just being an auxiliary library.

Syntax checking changes:

 - a84848b ("Tighten up syntax checking")
 - 8716316 ("Generate a parse error for extra tokens at EOL")
 - 416083a ("Flag constant symbols where they're not allowed")

Warning changes:

 - 9c309400 ("Add some post-parsing warnings")
 - da0bfa3a ("Error out for malformed hex/int/string defaults")
 - 5d2041a9 ("Add more choice type and prompt sanity checks")
 - 67f825fc ("Warn if there's more than one help text")
 - 990c780f ("Add some warnings related to selects and implies")
 - 7432ade8 ("Warn if a symbol is defined with multiple types")
 - 5eeea863 ("Improve int/hex sanity checking")
 - ad94bb45 ("Sanity-check range values")
 - e930c140 ("Warn if a symbol/choice has multiple prompts")
 - 60d12911 ("Warn if help text is empty")
 - d43d2e83 ("Warn if menuconfig statement has no prompt")
 - 3db12f72 ("Warn if a choice symbol has defaults")
 - 0eadd61c ("Warn if choice symbol has prompt outside choice")

Also includes various code nits.
</content>
</entry>
<entry>
<title>Add project_urls to setup.py</title>
<updated>2018-01-26T04:43:17Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-01-26T04:41:38Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=42172fed840e4522ee12cf040466554df691bd5c'/>
<id>urn:sha1:42172fed840e4522ee12cf040466554df691bd5c</id>
<content type='text'>
Shows up as a nice sidebar on PyPI.
</content>
</entry>
<entry>
<title>Clean up setup.py a bit</title>
<updated>2018-01-26T04:16:10Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-01-26T04:16:10Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=4c63cb5ee79faf93dea7b8f26c54a0bbe449caf0'/>
<id>urn:sha1:4c63cb5ee79faf93dea7b8f26c54a0bbe449caf0</id>
<content type='text'>
Can test the python_requires now too.
</content>
</entry>
<entry>
<title>Make 2.5.0 release</title>
<updated>2018-01-25T01:47:29Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-01-25T01:47:29Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=a7beef274a63afbaf6c3c11c60aa2702d439fb2d'/>
<id>urn:sha1:a7beef274a63afbaf6c3c11c60aa2702d439fb2d</id>
<content type='text'>
 - 955ea4 ("Support &lt;, &gt; relational operators with tristates") adds a
   small recent feature from upstream. Haven't even seen any relational
   operators besides = and != being used yet I think.

 - 8d7235 ("Tighten up regexes") cleans up and optimizes the regexes
   used during parsing and .config reading a bit.
</content>
</entry>
<entry>
<title>Make 2.4.0 release</title>
<updated>2018-01-24T05:18:27Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-01-24T04:45:47Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=d5bd29910072abed260414eefdfaacacd700040e'/>
<id>urn:sha1:d5bd29910072abed260414eefdfaacacd700040e</id>
<content type='text'>
Just has b82ea0a ("Enable universal newlines mode for Python 2").
</content>
</entry>
</feed>
