Compare commits

...

4 Commits

Author SHA1 Message Date
Mandresy Randrianarinjaka
de571226af feat: Change counter value increment to * 2
All checks were successful
versioning-and-changelog / versioning_and_changelog (pull_request) Successful in 19s
2025-02-06 16:14:55 +03:00
Mandresy Randrianarinjaka
c62eb994d9 style: Fix typo 2025-02-06 16:14:12 +03:00
Gitea Actions
050401eb63 chore: increment version 0.0.1+1 and update changelog 2025-02-06 13:12:23 +00:00
ea107b1094 Merge pull request 'dev' (#34) from dev into master
Reviewed-on: #34
2025-02-06 13:11:56 +00:00
3 changed files with 28 additions and 3 deletions

View File

@ -0,0 +1,25 @@
## 0.0.1+1 (2025-02-06)
### Breaking Changes
No breaking changes found.
### Features
No features found.
### Bug Fixes
No bug fixes found.
### Refactors
No refactors found.
### Style
- (#e99f17b) Update color watch
### CI/CD
No CI/CD changes found.
### Other Changes
- (#e99f17b) style: Update color watch
- (#20ae79f) chore: Add more stype commit
- (#523cfed) chore: Reset version & changelog

View File

@ -16,7 +16,7 @@ class MyApp extends StatelessWidget {
colorScheme: ColorScheme.fromSeed(seedColor: Colors.red),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
home: const MyHomePage(title: 'Flutter test Home Page'),
);
}
}
@ -35,7 +35,7 @@ class _MyHomePageState extends State<MyHomePage> {
void _incrementCounter() {
setState(() {
_counter = _counter + 4;
_counter = _counter * 2;
});
}

View File

@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 0.0.0+0
version: 0.0.1+1
environment:
sdk: ^3.6.1