Skip to content

Commit 28a356c

Browse files
committed
v1.3
1 parent a9cefeb commit 28a356c

File tree

5 files changed

+95
-84
lines changed

5 files changed

+95
-84
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ CMAKE_GENERATOR?=Unix Makefiles
1212
TOOLSET?=clang
1313
CLANG_FORMAT?=clang-format
1414
CLANG_TIDY?=clang-tidy
15-
PYTHON?=python2
15+
PYTHON?=python3
1616
MKDOCS?=mkdocs
1717
MKDOCS_THEME?=boost-modern
1818
MKDOCS_SITE?=site

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -437,14 +437,14 @@ retq
437437
* [Shared Scope](https://boost-ext.github.io/di/extensions.html#shared-scope)
438438
* [FAQ](https://boost-ext.github.io/di/FAQ.html)
439439
* [CHANGELOG](https://boost-ext.github.io/di/CHANGELOG.html)
440+
* [[1.3.0] - 2023-05-23](https://boost-ext.github.io/di/CHANGELOG.html#130-2023-05-23)
440441
* [[1.2.0] - 2020-07-21](https://boost-ext.github.io/di/CHANGELOG.html#120-2020-07-21)
441442
* [[1.1.0] - 2019-01-07](https://boost-ext.github.io/di/CHANGELOG.html#110-2019-01-07)
442443
* [[1.0.2] - 2018-01-04](https://boost-ext.github.io/di/CHANGELOG.html#102-2018-01-04)
443444
* [[1.0.1] - 2016-05-04](https://boost-ext.github.io/di/CHANGELOG.html#101-2016-05-04)
444445
* [[1.0.0] - 2016-02-22](https://boost-ext.github.io/di/CHANGELOG.html#100-2016-02-22)
445446
* [[0.5.0] - 2015-01-12](https://boost-ext.github.io/di/CHANGELOG.html#050-2015-01-12)
446447
* [[0.1.0] - 2014-08-15](https://boost-ext.github.io/di/CHANGELOG.html#010-2014-08-15)
447-
448448
[](GENERATE_TOC_END)
449449

450450
---

doc/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.3.0] - 2023-05-23
2+
- **Bug Fixes**
3+
- [Issues](https://github.com/boost-ext/di/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2020-07-21..2023-05-23+)
4+
>
15
## [1.2.0] - 2020-07-21
26
- **Additions**
37
- Support for Clang-9/Clang-10/XCode-11

doc/scripts/update_readme_toc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
for line in md:
2121
if line.startswith('##'):
2222
name = line.replace('# ', '').replace('#', '')[:-1]
23-
id = filter(lambda c: c == '-' or c == '_' or str.isalnum(c), name.lower().replace(" ", "-")).replace("--", "")
23+
id = ''.join(filter(lambda c: c == '-' or c == '_' or str.isalnum(c), name.lower().replace(" ", "-"))).replace("--", "")
2424
print(' * [' + name + '](' + sys.argv[4] + '/' + index[1][1:-4] + ext + "#" + id + ')')
2525
print
2626
elif line.startswith('[](GENERATE_TOC_END)'):

0 commit comments

Comments
 (0)