1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
<a name="v2.2.1"></a>
# [v2.2.1](https://github.com/thombashi/DateTimeRange/releases/tag/v2.2.1) - 07 Apr 2024
## What's Changed
* Bump actions/setup-python from 4 to 5 by [@dependabot](https://github.com/dependabot) in https://github.com/thombashi/DateTimeRange/pull/47
* Fix an error that `DateTimeRange.intersection` method failed when the ranges are not overlapped and the `intersection_threshold` is not `None`: [#48](https://github.com/thombashi/DateTimeRange/issues/48) (Thanks to [@wernersa](https://github.com/wernersa))
* Keep the timezone when perform `__iadd__` or `__isub__` operations
* Add a build and publish workflow
* Add Sigstore signatures to release assets
## New Contributors
* [@dependabot](https://github.com/dependabot) made their first contribution in https://github.com/thombashi/DateTimeRange/pull/47
**Full Changelog**: https://github.com/thombashi/DateTimeRange/compare/v2.2.0...v2.2.1
[Changes][v2.2.1]
<a name="v2.2.0"></a>
# [v2.2.0](https://github.com/thombashi/DateTimeRange/releases/tag/v2.2.0) - 03 Oct 2023
- Add `timezone` as an optional argument to `set_time_range` method, `from_range_text` method and the `DateTimeRange` class constructor
- Add `timezone` property to `DateTimeRange` class
- Add support for Python 3.12
- Change `start_time_format` and `end_time_format` of the `DateTimeRange` class constructor to optional arguments
- Default format value would not be changed
- Fix type annotations of `set_start_datetime` and `set_end_datetime` methods
- Bump minimum `typepy` version to 1.3.2
[Changes][v2.2.0]
<a name="v2.1.1"></a>
# [v2.1.1](https://github.com/thombashi/DateTimeRange/releases/tag/v2.1.1) - 01 Oct 2023
- Add `__all__` to `__init__.py`
- Add `docs` extras
- Add `zip_safe=False`
- Add a classifier
- Update `[build-system]`
- Modify to use `pypa/build` for package build
**Full Changelog**: https://github.com/thombashi/DateTimeRange/compare/v2.1.0...v2.1.1
[Changes][v2.1.1]
<a name="v2.1.0"></a>
# [v2.1.0](https://github.com/thombashi/DateTimeRange/releases/tag/v2.1.0) - 19 Feb 2023
## What's Changed
* Add type annotations by [@hauntsaninja](https://github.com/hauntsaninja) in https://github.com/thombashi/DateTimeRange/pull/45
* Changes to make `datetime.timedelta` and `dateutil.relativedelta.relativedelta` transparently usable for arguments.
## New Contributors
* [@hauntsaninja](https://github.com/hauntsaninja) made their first contribution in https://github.com/thombashi/DateTimeRange/pull/45
**Full Changelog**: https://github.com/thombashi/DateTimeRange/compare/v2.0.0...v2.1.0
[Changes][v2.1.0]
<a name="v2.0.0"></a>
# [v2.0.0](https://github.com/thombashi/DateTimeRange/releases/tag/v2.0.0) - 11 Feb 2023
- Add `intersection_threshold` argument to `intersection`/`is_intersection` methods: [#43](https://github.com/thombashi/DateTimeRange/issues/43) (Thanks to [@usman5251](https://github.com/usman5251))
- Modify to accept regular expression for separator argument of `from_range_text` method: [#41](https://github.com/thombashi/DateTimeRange/issues/41) (Thanks to [@pantierra](https://github.com/pantierra))
- Fix the behavior of range when traversing from end to start: [#44](https://github.com/thombashi/DateTimeRange/issues/44) (Thanks to [@4l1fe](https://github.com/4l1fe))
- Drop support for Python 3.6
- Add support for Python 3.11
**Full Changelog**: https://github.com/thombashi/DateTimeRange/compare/v1.2.0...v2.0.0
[Changes][v2.0.0]
<a name="v1.2.0"></a>
# [v1.2.0](https://github.com/thombashi/DateTimeRange/releases/tag/v1.2.0) - 10 Jul 2021
- Add `DateTimeRange.from_range_text` class method: [#38](https://github.com/thombashi/DateTimeRange/issues/38) (Thanks to [@noamsgl](https://github.com/noamsgl))
[Changes][v1.2.0]
<a name="v1.1.0"></a>
# [v1.1.0](https://github.com/thombashi/DateTimeRange/releases/tag/v1.1.0) - 09 Jun 2021
- Add `subtract` method to `DateTimeRange` class: [#36](https://github.com/thombashi/DateTimeRange/issues/36) (Thanks to [@bramski](https://github.com/bramski))
- Add `split` method to `DateTimeRange` class
- Add support for Python 3.10
- Drop support for Python 3.5
[Changes][v1.1.0]
<a name="v0.5.0"></a>
# [v0.5.0](https://github.com/thombashi/DateTimeRange/releases/tag/v0.5.0) - 31 Oct 2018
- Change to return a new instance instead of changing the instance value itself when using `intersection`/`encompass` methods [#31](https://github.com/thombashi/DateTimeRange/issues/31) (Thanks to [@camelia-c](https://github.com/camelia-c))
[Changes][v0.5.0]
<a name="v0.4.0"></a>
# [v0.4.0](https://github.com/thombashi/DateTimeRange/releases/tag/v0.4.0) - 30 Oct 2018
- Add support for `datetime.date` class
[Changes][v0.4.0]
<a name="v0.3.6"></a>
# [v0.3.6](https://github.com/thombashi/DateTimeRange/releases/tag/v0.3.6) - 15 Sep 2018
- Add support for Python 3.7
- Update the package metadata
[Changes][v0.3.6]
<a name="v0.2.6"></a>
# [v0.2.6](https://github.com/thombashi/DateTimeRange/releases/tag/v0.2.6) - 17 Nov 2016
- Fix to apply dependent package update
[Changes][v0.2.6]
<a name="v0.2.5"></a>
# [v0.2.5](https://github.com/thombashi/DateTimeRange/releases/tag/v0.2.5) - 11 Aug 2016
- Refactoring
[Changes][v0.2.5]
<a name="v0.2.4"></a>
# [v0.2.4](https://github.com/thombashi/DateTimeRange/releases/tag/v0.2.4) - 09 Jul 2016
- Drop support for Python 2.6
- Fix datetime detection error with version strings
[Changes][v0.2.4]
<a name="v0.2.3"></a>
# [v0.2.3](https://github.com/thombashi/DateTimeRange/releases/tag/v0.2.3) - 03 Jul 2016
[Changes][v0.2.3]
<a name="v0.2.2"></a>
# [v0.2.2](https://github.com/thombashi/DateTimeRange/releases/tag/v0.2.2) - 19 Jun 2016
- Make pytest-runner a conditional requirement
- Drop support for Python 2.5
[Changes][v0.2.2]
<a name="v0.2.1"></a>
# [v0.2.1](https://github.com/thombashi/DateTimeRange/releases/tag/v0.2.1) - 15 Mar 2016
# Enhancement
[#12](https://github.com/thombashi/DateTimeRange/issues/12): Added support for datetimerange inclusion. Thanks to [@guyzmo](https://github.com/guyzmo)
[Changes][v0.2.1]
<a name="v0.2.0"></a>
# [v0.2.0](https://github.com/thombashi/DateTimeRange/releases/tag/v0.2.0) - 10 Mar 2016
# Enhancement
- Add range method to support iterator.
[Changes][v0.2.0]
<a name="v0.1.3"></a>
# [v0.1.3](https://github.com/thombashi/DateTimeRange/releases/tag/v0.1.3) - 04 Mar 2016
# Fix
- Fix [#8](https://github.com/thombashi/DateTimeRange/issues/8): correct daylight savings time processing. Thanks to [@tweyter](https://github.com/tweyter)
[Changes][v0.1.3]
<a name="v0.1.2"></a>
# [v0.1.2](https://github.com/thombashi/DateTimeRange/releases/tag/v0.1.2) - 25 Feb 2016
## Enhancement
- add operator support: `!=`, `+`, `+=`, `-`, `-=`
[Changes][v0.1.2]
<a name="v0.1.1"></a>
# [v0.1.1](https://github.com/thombashi/DateTimeRange/releases/tag/v0.1.1) - 20 Feb 2016
[Changes][v0.1.1]
<a name="v0.1.0"></a>
# [v0.1.0](https://github.com/thombashi/DateTimeRange/releases/tag/v0.1.0) - 19 Feb 2016
[Changes][v0.1.0]
[v2.2.1]: https://github.com/thombashi/DateTimeRange/compare/v2.2.0...v2.2.1
[v2.2.0]: https://github.com/thombashi/DateTimeRange/compare/v2.1.1...v2.2.0
[v2.1.1]: https://github.com/thombashi/DateTimeRange/compare/v2.1.0...v2.1.1
[v2.1.0]: https://github.com/thombashi/DateTimeRange/compare/v2.0.0...v2.1.0
[v2.0.0]: https://github.com/thombashi/DateTimeRange/compare/v1.2.0...v2.0.0
[v1.2.0]: https://github.com/thombashi/DateTimeRange/compare/v1.1.0...v1.2.0
[v1.1.0]: https://github.com/thombashi/DateTimeRange/compare/v0.5.0...v1.1.0
[v0.5.0]: https://github.com/thombashi/DateTimeRange/compare/v0.4.0...v0.5.0
[v0.4.0]: https://github.com/thombashi/DateTimeRange/compare/v0.3.6...v0.4.0
[v0.3.6]: https://github.com/thombashi/DateTimeRange/compare/v0.2.6...v0.3.6
[v0.2.6]: https://github.com/thombashi/DateTimeRange/compare/v0.2.5...v0.2.6
[v0.2.5]: https://github.com/thombashi/DateTimeRange/compare/v0.2.4...v0.2.5
[v0.2.4]: https://github.com/thombashi/DateTimeRange/compare/v0.2.3...v0.2.4
[v0.2.3]: https://github.com/thombashi/DateTimeRange/compare/v0.2.2...v0.2.3
[v0.2.2]: https://github.com/thombashi/DateTimeRange/compare/v0.2.1...v0.2.2
[v0.2.1]: https://github.com/thombashi/DateTimeRange/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/thombashi/DateTimeRange/compare/v0.1.3...v0.2.0
[v0.1.3]: https://github.com/thombashi/DateTimeRange/compare/v0.1.2...v0.1.3
[v0.1.2]: https://github.com/thombashi/DateTimeRange/compare/v0.1.1...v0.1.2
[v0.1.1]: https://github.com/thombashi/DateTimeRange/compare/v0.1.0...v0.1.1
[v0.1.0]: https://github.com/thombashi/DateTimeRange/tree/v0.1.0
<!-- Generated by https://github.com/rhysd/changelog-from-release v3.7.2 -->
|