bare-script 3.0.11__tar.gz → 3.0.12__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. {bare_script-3.0.11/src/bare_script.egg-info → bare_script-3.0.12}/PKG-INFO +1 -1
  2. {bare_script-3.0.11 → bare_script-3.0.12}/setup.cfg +1 -1
  3. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/library.py +1 -1
  4. {bare_script-3.0.11 → bare_script-3.0.12/src/bare_script.egg-info}/PKG-INFO +1 -1
  5. {bare_script-3.0.11 → bare_script-3.0.12}/LICENSE +0 -0
  6. {bare_script-3.0.11 → bare_script-3.0.12}/README.md +0 -0
  7. {bare_script-3.0.11 → bare_script-3.0.12}/pyproject.toml +0 -0
  8. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/__init__.py +0 -0
  9. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/__main__.py +0 -0
  10. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/bare.py +0 -0
  11. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/baredoc.py +0 -0
  12. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/data.py +0 -0
  13. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/model.py +0 -0
  14. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/options.py +0 -0
  15. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/parser.py +0 -0
  16. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/runtime.py +0 -0
  17. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script/value.py +0 -0
  18. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script.egg-info/SOURCES.txt +0 -0
  19. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script.egg-info/dependency_links.txt +0 -0
  20. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script.egg-info/entry_points.txt +0 -0
  21. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script.egg-info/requires.txt +0 -0
  22. {bare_script-3.0.11 → bare_script-3.0.12}/src/bare_script.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bare-script
3
- Version: 3.0.11
3
+ Version: 3.0.12
4
4
  Summary: bare-script
5
5
  Home-page: https://github.com/craigahobbs/bare-script
6
6
  Author: Craig A. Hobbs
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = bare-script
3
- version = 3.0.11
3
+ version = 3.0.12
4
4
  url = https://github.com/craigahobbs/bare-script
5
5
  author = Craig A. Hobbs
6
6
  author_email = craigahobbs@gmail.com
@@ -1965,7 +1965,7 @@ _SYSTEM_TYPE_ARGS = value_args_model([
1965
1965
  # $return: The encoded URL string
1966
1966
  def _url_encode(args, unused_options):
1967
1967
  url, extra = value_args_validate(_URL_ENCODE_ARGS, args)
1968
- safe = "':/&(" if extra else "':/&()"
1968
+ safe = "':/&+(" if extra else "':/&+()"
1969
1969
  return urllib.parse.quote(url, safe=safe)
1970
1970
 
1971
1971
  _URL_ENCODE_ARGS = value_args_model([
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bare-script
3
- Version: 3.0.11
3
+ Version: 3.0.12
4
4
  Summary: bare-script
5
5
  Home-page: https://github.com/craigahobbs/bare-script
6
6
  Author: Craig A. Hobbs
File without changes
File without changes