Revise README with new version and AI contributions#32
Conversation
Updated README to reflect new package version and added AI-assisted contributions section.
There was a problem hiding this comment.
Pull request overview
This PR updates the package installation docs to reference a beta version of editorjs_flutter in the pubspec.yaml snippet.
Changes:
- Updated
README.mdinstall example fromeditorjs_flutter: ^0.5.0toeditorjs_flutter: ^0.5.0-beta.1.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ```yaml | ||
| dependencies: | ||
| editorjs_flutter: ^0.5.0 | ||
| editorjs_flutter: ^0.5.0-beta.1 |
There was a problem hiding this comment.
The README now pins the install example to ^0.5.0-beta.1, but the repo’s own pubspec.yaml and CHANGELOG.md indicate the current package version is 0.5.0. This makes the install instructions potentially misleading. Either update the package metadata to match the beta naming, or adjust the README to reference ^0.5.0 (or add a note explaining why users should choose the beta). Also, if the goal is to keep users on the beta specifically, consider not using ^ since it can resolve to the stable 0.5.0 once published.
This pull request updates the documentation to reference the latest beta version of the
editorjs_flutterpackage in the installation instructions.pubspec.yamlexample inREADME.mdto useeditorjs_flutter: ^0.5.0-beta.1instead of^0.5.0.