Skip to content

Commit 66f249d

Browse files
authored
Merge pull request #38 from anvilistas/bump-version
[Bump version] auto-update
2 parents bb105d1 + c923ecb commit 66f249d

21 files changed

+39
-25
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2
2+
current_version = 0.1.3
33
commit = False
44
tag = False
55

CHANGELOG.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,31 @@
11
# Changelog
22

3-
## v0.1.2 (01/01/1970)
3+
## v0.1.3 (01/01/1970)
44
## What's Changed
55
### 🐛 Bug Fixes
66

7-
- Fix: add delitem support for reactive list [#35](https://github.com/anvilistas/reactive/pull/35)
8-
- Fix - we can make anvil classes reactive [#31](https://github.com/anvilistas/reactive/pull/31)
7+
- Fix: __dict__ assignment [#37](https://github.com/anvilistas/reactive/pull/37)
98

109
## Contributors
1110
Thanks to all our contributors! 🎉
12-
@meatballs, @pre-commit-ci, @pre-commit-ci[bot] and @s-cork
11+
@pre-commit-ci[bot] and @s-cork
1312

14-
**Full Changelog**: https://github.com/anvilistas/reactive/compare/v0.1.1...v0.1.2
13+
**Full Changelog**: https://github.com/anvilistas/reactive/compare/v0.1.2...v0.1.3
14+
15+
---
16+
17+
## v0.1.2 (04/12/2024)
18+
## What's Changed
19+
### 🐛 Bug Fixes
20+
21+
- Fix: add delitem support for reactive list [#35](https://github.com/anvilistas/reactive/pull/35)
22+
- Fix - we can make anvil classes reactive [#31](https://github.com/anvilistas/reactive/pull/31)
23+
24+
## Contributors
25+
Thanks to all our contributors! 🎉
26+
@meatballs, @pre-commit-ci, @pre-commit-ci[bot] and @s-cork
27+
28+
**Full Changelog**: https://github.com/anvilistas/reactive/compare/v0.1.1...v0.1.2
1529

1630
---
1731

client_code/_internal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
#
66
# This software is published at https://github.com/anvilistas/reactive
77

8-
__version__ = "0.1.2"
8+
__version__ = "0.1.3"

client_code/_internal/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This software is published at https://github.com/anvilistas/reactive
77

8-
__version__ = "0.1.2"
8+
__version__ = "0.1.3"
99

1010
STATE_CLEAN = 0
1111
STATE_CHECK = 1

client_code/_internal/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from .owner import Owner, getOwner, setCurrentOwner
1818
from .utils import wrap_compute
1919

20-
__version__ = "0.1.2"
20+
__version__ = "0.1.3"
2121

2222
currentObserver = None
2323
currentMask = DEFAULT_FLAGS

client_code/_internal/effect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .core import Computation
1212
from .owner import handleError
1313

14-
__version__ = "0.1.2"
14+
__version__ = "0.1.3"
1515

1616
if is_server_side():
1717

client_code/_internal/error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This software is published at https://github.com/anvilistas/reactive
77

8-
__version__ = "0.1.2"
8+
__version__ = "0.1.3"
99

1010

1111
class NotReadyError(Exception):

client_code/_internal/flags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This software is published at https://github.com/anvilistas/reactive
77

8-
__version__ = "0.1.2"
8+
__version__ = "0.1.3"
99

1010
ERROR_OFFSET = 0
1111
ERROR_BIT = 1 << ERROR_OFFSET

client_code/_internal/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# This software is published at https://github.com/anvilistas/reactive
77

8-
__version__ = "0.1.2"
8+
__version__ = "0.1.3"
99

1010

1111
class _A:

client_code/_internal/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import sys
1616
from datetime import datetime as _datetime
1717

18-
__version__ = "0.1.2"
18+
__version__ = "0.1.3"
1919

2020
NOTSET = 0
2121
DEBUG = 1

0 commit comments

Comments
 (0)