What's Changed
* Use BaseField.__get__ and __set__ instead of `v` by CircuitSacul in https://github.com/TrigonDev/apgorm/pull/38
* Use `raw` instead of `r` by CircuitSacul in https://github.com/TrigonDev/apgorm/pull/39
py
user = await User.fetch(name="Me")
before
user.name.v == "Me"
user.name.v = "New Me"
await user.save()
now
user.name == "Me"
user.name = "New Me"
await user.save()
if you need access to the field itself (for comparison), please use User.name
**Full Changelog**: https://github.com/TrigonDev/apgorm/compare/v0.1.0-b.11...v1.0.0-b.1