Skip to content

Commit d357bc6

Browse files
committed
version bump 2.5.0
1 parent 38aad70 commit d357bc6

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Code2flow CHANGELOG
22

3+
## [2.5.0] - 2022-03-25
4+
- Add async/await functionality to Python
5+
- Add --include-only-* CLI options
6+
- Minor README updates
7+
- Minor logging updates
8+
39
## [2.4.0] - 2021-12-26
410
- Implement subsets
511

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![code2flow logo](https://raw.githubusercontent.com/scottrogowski/code2flow/master/assets/code2flowlogo.png)
22

3-
![Version 2.4.0](https://img.shields.io/badge/version-2.4.0-brightgreen) ![Build passing](https://img.shields.io/badge/build-passing-brightgreen) ![Coverage 100%](https://img.shields.io/badge/coverage-100%25-brightgreen) ![License MIT](https://img.shields.io/badge/license-MIT-green])
3+
![Version 2.5.0](https://img.shields.io/badge/version-2.5.0-brightgreen) ![Build passing](https://img.shields.io/badge/build-passing-brightgreen) ![Coverage 100%](https://img.shields.io/badge/coverage-100%25-brightgreen) ![License MIT](https://img.shields.io/badge/license-MIT-green])
44

55
Code2flow generates [call graphs](https://en.wikipedia.org/wiki/Call_graph) for dynamic programming language. Code2flow supports Python, JavaScript, Ruby, and PHP.
66

code2flow/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from .model import (TRUNK_COLOR, LEAF_COLOR, NODE_COLOR, GROUP_TYPE, OWNER_CONST,
1515
Edge, Group, Node, Variable, is_installed, flatten)
1616

17-
VERSION = '2.4.0'
17+
VERSION = '2.5.0'
1818

1919
IMAGE_EXTENSIONS = ('png', 'svg')
2020
TEXT_EXTENSIONS = ('dot', 'gv', 'json')

0 commit comments

Comments
 (0)