Skip to content

Commit eb488e4

Browse files
authored
Release 1.0.0 (#98)
* Remove VSCode extensions recommendations file * Update versionCode and versionName to 11 and "1.1.0.11" in build.gradle * Add IDE specific files to .gitignore * Bump version to 1.0.0 in package.json and package-lock.json * Add pull request template for improved contribution guidelines * Add issue templates for bug reports, stories, and tasks * Refactor .gitignore to streamline IDE specific entries and improve environment variable handling
1 parent f7f0c0d commit eb488e4

9 files changed

Lines changed: 143 additions & 18 deletions

File tree

.github/ISSUE_TEMPLATE/BUG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
### Describe the bug
10+
11+
_Provide a clear and concise description of what the bug is._
12+
13+
### Steps to reproduce
14+
15+
Steps to reproduce the behavior:
16+
17+
1. Go to '...'
18+
2. Click on '....'
19+
3. Scroll down to '....'
20+
4. See error
21+
22+
### Expected behavior
23+
24+
_Provide a clear and concise description of what you expected to happen._
25+
26+
### Screenshots
27+
28+
_If applicable, add screenshots to help explain your problem._
29+
30+
### Environment
31+
32+
**Desktop (please complete the following information):**
33+
34+
- OS: [e.g. iOS]
35+
- Browser [e.g. chrome, safari]
36+
- Version [e.g. 22]
37+
38+
**Smartphone (please complete the following information):**
39+
40+
- Device: [e.g. iPhone6]
41+
- OS: [e.g. iOS8.1]
42+
- Browser [e.g. stock browser, safari]
43+
- Version [e.g. 22]
44+
45+
### Additional context
46+
47+
_Add any other context about the problem here._

.github/ISSUE_TEMPLATE/STORY.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Story
3+
about: New feature or improvement request
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
---
8+
9+
### Describe the story
10+
11+
_Provide a clear description of the new feature or improvement to existing functionality._
12+
13+
### Acceptance criteria
14+
15+
_Provide clear acceptance criteria to validate the story is complete._
16+
17+
[Gherkin syntax](https://cucumber.io/docs/gherkin/reference) example:
18+
19+
> GIVEN the 'PERSONA' has 'DONE SOMETHING'
20+
> WHEN the 'PERSONA' does 'ONE THING'
21+
> THEN the 'PERSONA' must do 'THIS THING'
22+
> AND the 'PERSONA' must do 'ANOTHER THING'
23+
> BUT the 'PERSONA' must not do 'UNWANTED THING'
24+
25+
### Additional context
26+
27+
_Add any other context about the story here._

.github/ISSUE_TEMPLATE/TASK.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Task
3+
about: A chore unrelated to features or problems
4+
title: ''
5+
labels: task
6+
assignees: ''
7+
---
8+
9+
### Describe the task
10+
11+
_Provide a clear description of the task._
12+
13+
### Additional context
14+
15+
_Add any other context about the task here._

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
:loudspeaker: **Instructions**
2+
3+
- Begin with a **DRAFT** pull request.
4+
- Follow _italicized instructions_ to add detail to assist the reviewers.
5+
- After completing all checklist items, change the pull request to **READY**.
6+
7+
---
8+
9+
### :wrench: Change Summary
10+
11+
_Describe the changes included in this pull request. [Link](https://docs.github.com/en/issues/tracking-your-work-with-issues/using-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword) to the associated GitHub issue(s)._
12+
13+
- fixes #1234
14+
- Added the [...]
15+
- Updated the [...]
16+
- Fixed the [...]
17+
18+
### :memo: Checklist
19+
20+
_Pull request authors must complete the following tasks before marking the PR as ready to review._
21+
22+
- [ ] Complete a self-review of changes
23+
- [ ] Unit tests have been created or updated
24+
- [ ] The code is free of [new] lint errors and warnings
25+
- [ ] Update storybook stories as needed
26+
- [ ] Update project documentation as needed, README, JSDoc, etc.
27+
28+
### :test_tube: Steps to Test
29+
30+
_Describe the process to test the changes in this pull request._
31+
32+
1. Go to [...]
33+
2. Click on [...]
34+
3. Verify that [...]
35+
36+
### :link: Additional Information
37+
38+
_Optionally, provide additional details, screenshots, or URLs that may assist the reviewer._
39+
40+
- [...]

.gitignore

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@
1414

1515
# misc
1616
.DS_Store
17-
.env*
18-
/.nx
19-
/.nx/cache
20-
/.vscode/*
21-
!/.vscode/extensions.json
17+
.nx
18+
.vscode
2219
.idea
2320

2421
npm-debug.log*
@@ -27,3 +24,7 @@ yarn-error.log*
2724

2825
# Optional eslint cache
2926
.eslintcache
27+
28+
# dotenv environment variable files
29+
.env*
30+
!.env.example

.vscode/extensions.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "net.leanstacks.ionic8"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 10
11-
versionName "1.1.0.10"
10+
versionCode 11
11+
versionName "1.1.0.11"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
aaptOptions {
1414
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"url": "https://github.com/mwarman/ionic8-playground"
77
},
88
"license": "MIT",
9-
"version": "0.1.0",
9+
"version": "1.0.0",
1010
"type": "module",
1111
"scripts": {
1212
"clean": "rimraf coverage dist",

0 commit comments

Comments
 (0)