CHANGELOG.md in monday_ruby-0.6.2 vs CHANGELOG.md in monday_ruby-1.0.0
- old
+ new
@@ -1,4 +1,24 @@
+## v1.0.0 (July 30, 2024)
+
+### Changed
+
+- **Refactor: Flat API replaced by Resource Classes**
+ - The client now uses a modular approach with resource classes instead of a flat API.
+ - Introduced a `Base` class for resources to encapsulate common functionality.
+ - All resource-specific logic is now encapsulated within individual resource classes (e.g., `Account`, `Board`).
+
+### Added
+
+- Support for enums
+
+### Breaking Changes
+
+- **Accessing Resources**:
+ - The way resources are accessed has changed.
+ - **Old**: `client.account`, `client.create_board`
+ - **New**: `client.accounts.query`, `client.board.create`
+
## v0.6.2 (April 21, 2024)
### Bug Fixes
- Fix formatting args (Issue)[https://github.com/sanifhimani/monday_ruby/issues/18]