Tags

Tags give the ability to mark specific points in history as being important
  • v0.6.0

    Added support for items with restricted choices
  • v0.5.2

    c6a18653 · Update for v0.5.2 ·
    Fix masking of set items by blank arguments
    
    Fixed:
    
    - Issue #2 - masking of items already set by blank command-line arguments
  • v0.5.1

    c95207f3 · Update for v0.5.1 ·
    Support for prior command-line arguments
    
    Added:
    
    - Support for arguments configured directly in ArgumentParser object, outside
      of MergeConf.
  • v0.5

    b34f38aa · Update for v0.5 ·
    Support for command-line arguments.
    
    Added:
    
    - Support for integration with Python's ArgumentParser library so that
      command-line arguments can be merged into configuration.
  • v0.4

    4e52a966 · Update for v0.4 ·
    Significant overhaul.
    
    Added:
    
    - Configuration files may have items declared outside of sections.  This allows
      for simpler configurations or for configurations where defining a section
      header isn't appropriate.
    - Configuration items may be accessed using dot notation, for example,
      `myconf.section.item` as well as by index notation.
    - Can now iterate through sections.
    
    Updated:
    
    - Documentation includes examples.
    - Everything in the MergeConf class.
  • v0.3

    fff2c5ff · Update for v0.3 ·
    Minor tweaks
    
    Added:
    * MissingConfigurationFile exception has `file` attribute for the missing
      filename.
  • v0.2

    First packaged release
    
    First semi-mature release ready for use by the world.
    
    Added:
    * Support for specific types (int, float) as well as str and bool.
      Support for boolean values normalized to be consistent with other
      types.
    
    Updated:
    * Improved error handling.
  • v0.1

    d9cb6e67 · Add basic documentation ·
    First implementation.
    
    * Reads from environment, configuration file