租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

216 lines
5.8 KiB

6 months ago
  1. # Changelog
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
  4. and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
  5. ## [2.0.1] - 2020-08-29
  6. ### Fixed
  7. - Fix issue with `process.argv` when used with interpreters (`coffee`, `ts-node`, etc.), #150.
  8. ## [2.0.0] - 2020-08-14
  9. ### Changed
  10. - Full rewrite. Now port from python 3.9.0 & more precise following.
  11. See [doc](./doc) for difference and migration info.
  12. - node.js 10+ required
  13. - Removed most of local docs in favour of original ones.
  14. ## [1.0.10] - 2018-02-15
  15. ### Fixed
  16. - Use .concat instead of + for arrays, #122.
  17. ## [1.0.9] - 2016-09-29
  18. ### Changed
  19. - Rerelease after 1.0.8 - deps cleanup.
  20. ## [1.0.8] - 2016-09-29
  21. ### Changed
  22. - Maintenance (deps bump, fix node 6.5+ tests, coverage report).
  23. ## [1.0.7] - 2016-03-17
  24. ### Changed
  25. - Teach `addArgument` to accept string arg names. #97, @tomxtobin.
  26. ## [1.0.6] - 2016-02-06
  27. ### Changed
  28. - Maintenance: moved to eslint & updated CS.
  29. ## [1.0.5] - 2016-02-05
  30. ### Changed
  31. - Removed lodash dependency to significantly reduce install size.
  32. Thanks to @mourner.
  33. ## [1.0.4] - 2016-01-17
  34. ### Changed
  35. - Maintenance: lodash update to 4.0.0.
  36. ## [1.0.3] - 2015-10-27
  37. ### Fixed
  38. - Fix parse `=` in args: `--examplepath="C:\myfolder\env=x64"`. #84, @CatWithApple.
  39. ## [1.0.2] - 2015-03-22
  40. ### Changed
  41. - Relaxed lodash version dependency.
  42. ## [1.0.1] - 2015-02-20
  43. ### Changed
  44. - Changed dependencies to be compatible with ancient nodejs.
  45. ## [1.0.0] - 2015-02-19
  46. ### Changed
  47. - Maintenance release.
  48. - Replaced `underscore` with `lodash`.
  49. - Bumped version to 1.0.0 to better reflect semver meaning.
  50. - HISTORY.md -> CHANGELOG.md
  51. ## [0.1.16] - 2013-12-01
  52. ### Changed
  53. - Maintenance release. Updated dependencies and docs.
  54. ## [0.1.15] - 2013-05-13
  55. ### Fixed
  56. - Fixed #55, @trebor89
  57. ## [0.1.14] - 2013-05-12
  58. ### Fixed
  59. - Fixed #62, @maxtaco
  60. ## [0.1.13] - 2013-04-08
  61. ### Changed
  62. - Added `.npmignore` to reduce package size
  63. ## [0.1.12] - 2013-02-10
  64. ### Fixed
  65. - Fixed conflictHandler (#46), @hpaulj
  66. ## [0.1.11] - 2013-02-07
  67. ### Added
  68. - Added 70+ tests (ported from python), @hpaulj
  69. - Added conflictHandler, @applepicke
  70. - Added fromfilePrefixChar, @hpaulj
  71. ### Fixed
  72. - Multiple bugfixes, @hpaulj
  73. ## [0.1.10] - 2012-12-30
  74. ### Added
  75. - Added [mutual exclusion](http://docs.python.org/dev/library/argparse.html#mutual-exclusion)
  76. support, thanks to @hpaulj
  77. ### Fixed
  78. - Fixed options check for `storeConst` & `appendConst` actions, thanks to @hpaulj
  79. ## [0.1.9] - 2012-12-27
  80. ### Fixed
  81. - Fixed option dest interferens with other options (issue #23), thanks to @hpaulj
  82. - Fixed default value behavior with `*` positionals, thanks to @hpaulj
  83. - Improve `getDefault()` behavior, thanks to @hpaulj
  84. - Improve negative argument parsing, thanks to @hpaulj
  85. ## [0.1.8] - 2012-12-01
  86. ### Fixed
  87. - Fixed parser parents (issue #19), thanks to @hpaulj
  88. - Fixed negative argument parse (issue #20), thanks to @hpaulj
  89. ## [0.1.7] - 2012-10-14
  90. ### Fixed
  91. - Fixed 'choices' argument parse (issue #16)
  92. - Fixed stderr output (issue #15)
  93. ## [0.1.6] - 2012-09-09
  94. ### Fixed
  95. - Fixed check for conflict of options (thanks to @tomxtobin)
  96. ## [0.1.5] - 2012-09-03
  97. ### Fixed
  98. - Fix parser #setDefaults method (thanks to @tomxtobin)
  99. ## [0.1.4] - 2012-07-30
  100. ### Fixed
  101. - Fixed pseudo-argument support (thanks to @CGamesPlay)
  102. - Fixed addHelp default (should be true), if not set (thanks to @benblank)
  103. ## [0.1.3] - 2012-06-27
  104. ### Fixed
  105. - Fixed formatter api name: Formatter -> HelpFormatter
  106. ## [0.1.2] - 2012-05-29
  107. ### Fixed
  108. - Removed excess whitespace in help
  109. - Fixed error reporting, when parcer with subcommands
  110. called with empty arguments
  111. ### Added
  112. - Added basic tests
  113. ## [0.1.1] - 2012-05-23
  114. ### Fixed
  115. - Fixed line wrapping in help formatter
  116. - Added better error reporting on invalid arguments
  117. ## [0.1.0] - 2012-05-16
  118. ### Added
  119. - First release.
  120. [2.0.1]: https://github.com/nodeca/argparse/compare/2.0.0...2.0.1
  121. [2.0.0]: https://github.com/nodeca/argparse/compare/1.0.10...2.0.0
  122. [1.0.10]: https://github.com/nodeca/argparse/compare/1.0.9...1.0.10
  123. [1.0.9]: https://github.com/nodeca/argparse/compare/1.0.8...1.0.9
  124. [1.0.8]: https://github.com/nodeca/argparse/compare/1.0.7...1.0.8
  125. [1.0.7]: https://github.com/nodeca/argparse/compare/1.0.6...1.0.7
  126. [1.0.6]: https://github.com/nodeca/argparse/compare/1.0.5...1.0.6
  127. [1.0.5]: https://github.com/nodeca/argparse/compare/1.0.4...1.0.5
  128. [1.0.4]: https://github.com/nodeca/argparse/compare/1.0.3...1.0.4
  129. [1.0.3]: https://github.com/nodeca/argparse/compare/1.0.2...1.0.3
  130. [1.0.2]: https://github.com/nodeca/argparse/compare/1.0.1...1.0.2
  131. [1.0.1]: https://github.com/nodeca/argparse/compare/1.0.0...1.0.1
  132. [1.0.0]: https://github.com/nodeca/argparse/compare/0.1.16...1.0.0
  133. [0.1.16]: https://github.com/nodeca/argparse/compare/0.1.15...0.1.16
  134. [0.1.15]: https://github.com/nodeca/argparse/compare/0.1.14...0.1.15
  135. [0.1.14]: https://github.com/nodeca/argparse/compare/0.1.13...0.1.14
  136. [0.1.13]: https://github.com/nodeca/argparse/compare/0.1.12...0.1.13
  137. [0.1.12]: https://github.com/nodeca/argparse/compare/0.1.11...0.1.12
  138. [0.1.11]: https://github.com/nodeca/argparse/compare/0.1.10...0.1.11
  139. [0.1.10]: https://github.com/nodeca/argparse/compare/0.1.9...0.1.10
  140. [0.1.9]: https://github.com/nodeca/argparse/compare/0.1.8...0.1.9
  141. [0.1.8]: https://github.com/nodeca/argparse/compare/0.1.7...0.1.8
  142. [0.1.7]: https://github.com/nodeca/argparse/compare/0.1.6...0.1.7
  143. [0.1.6]: https://github.com/nodeca/argparse/compare/0.1.5...0.1.6
  144. [0.1.5]: https://github.com/nodeca/argparse/compare/0.1.4...0.1.5
  145. [0.1.4]: https://github.com/nodeca/argparse/compare/0.1.3...0.1.4
  146. [0.1.3]: https://github.com/nodeca/argparse/compare/0.1.2...0.1.3
  147. [0.1.2]: https://github.com/nodeca/argparse/compare/0.1.1...0.1.2
  148. [0.1.1]: https://github.com/nodeca/argparse/compare/0.1.0...0.1.1
  149. [0.1.0]: https://github.com/nodeca/argparse/releases/tag/0.1.0