Skip to content

Commit efeaafc

Browse files
authored
release-v1.0.0
\r\n***PUBLISH_RELEASE***
2 parents 94b85bc + a8c7c82 commit efeaafc

File tree

77 files changed

+4867
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+4867
-1
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Copyright (c) .NET Foundation and Contributors
2+
# See LICENSE file in the project root for full license information.
3+
4+
# This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running.
5+
6+
name: Daily update dependencies
7+
8+
on:
9+
schedule:
10+
# At 00:00 UTC every Mon, Wed and Friday.
11+
- cron: '00 00 * * 1,3,5'
12+
repository_dispatch:
13+
types: update-dependencies
14+
15+
defaults:
16+
run:
17+
shell: pwsh
18+
19+
jobs:
20+
update-dotnet-preview:
21+
name: Update .NET nanoFramework dependencies
22+
timeout-minutes: 30 # Non default because this solution has lots of projects to update!
23+
runs-on: windows-latest
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v2
27+
with:
28+
path: main
29+
- name: Checkout tools repo
30+
uses: actions/checkout@v2
31+
with:
32+
repository: nanoframework/nf-tools
33+
path: tools
34+
- name: Update dependencies
35+
run: ./github-actions/update-nf-dependencies.ps1
36+
working-directory: tools
37+
- name: Create Pull Request
38+
uses: peter-evans/create-pull-request@v3
39+
if: env.CREATE_PR == 'true'
40+
with:
41+
title: '${{ env.PR_TITLE }}'
42+
body: |
43+
${{ env.PR_MESSAGE }}
44+
45+
[version update]
46+
47+
### :warning: This is an automated update. :warning:
48+
committer: 'nfbot <[email protected]>'
49+
branch: ${{ env.BRANCH_NAME }}
50+
path: main
51+
labels: |
52+
Type: dependencies

.github_changelog_generator

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
user=nanoframework
2+
project=nanoFramework.M5Stack
3+
issues=false
4+
add_issues_wo_labels=false
5+
add_pr_wo_labels=false
6+
add_issues_wo_labels=false
7+
filter_issues_by_milestone=false
8+
exclude_labels=Area: Config-and-Build,Area: Infrastructure-and-Organization,reverted
9+
enhancement_labels=Type: enhancement
10+
bug_labels=Type: bug
11+
merge_prefix=**Documentation and other chores:**
12+
unreleased_label=**Changes available only in 'Preview' NuGet packages:**
13+
author=false

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,3 +328,6 @@ ASALocalRun/
328328

329329
# MFractors (Xamarin productivity tool) working folder
330330
.mfractor/
331+
332+
#SoundCloud
333+
*.sonarqube/

CHANGELOG.md

Lines changed: 270 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,270 @@
1+
# Changelog
2+
3+
## [v1.0.0-preview.91](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.91) (2021-11-09)
4+
5+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.88...v1.0.0-preview.91)
6+
7+
**Fixed bugs:**
8+
9+
- Change type of LuminosityPercentage to int from byte [\#36](https://github.com/nanoframework/nanoFramework.M5Stack/pull/36)
10+
11+
## [v1.0.0-preview.88](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.88) (2021-11-09)
12+
13+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.86...v1.0.0-preview.88)
14+
15+
## [v1.0.0-preview.86](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.86) (2021-11-03)
16+
17+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.83...v1.0.0-preview.86)
18+
19+
**Fixed bugs:**
20+
21+
- Fix GPIO config for SPI [\#34](https://github.com/nanoframework/nanoFramework.M5Stack/pull/34)
22+
23+
## [v1.0.0-preview.83](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.83) (2021-10-28)
24+
25+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.81...v1.0.0-preview.83)
26+
27+
**Documentation and other chores:**
28+
29+
- Update 4 nuget dependencies [\#33](https://github.com/nanoframework/nanoFramework.M5Stack/pull/33)
30+
31+
## [v1.0.0-preview.81](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.81) (2021-10-27)
32+
33+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.77...v1.0.0-preview.81)
34+
35+
## [v1.0.0-preview.77](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.77) (2021-10-27)
36+
37+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.75...v1.0.0-preview.77)
38+
39+
## [v1.0.0-preview.75](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.75) (2021-10-27)
40+
41+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.72...v1.0.0-preview.75)
42+
43+
## [v1.0.0-preview.72](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.72) (2021-09-11)
44+
45+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.70...v1.0.0-preview.72)
46+
47+
**Documentation and other chores:**
48+
49+
- Update 1 nuget dependencies [\#31](https://github.com/nanoframework/nanoFramework.M5Stack/pull/31)
50+
51+
## [v1.0.0-preview.70](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.70) (2021-07-16)
52+
53+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.68...v1.0.0-preview.70)
54+
55+
**Documentation and other chores:**
56+
57+
- Update 1 nuget dependencies [\#29](https://github.com/nanoframework/nanoFramework.M5Stack/pull/29)
58+
59+
## [v1.0.0-preview.68](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.68) (2021-07-14)
60+
61+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.66...v1.0.0-preview.68)
62+
63+
**Documentation and other chores:**
64+
65+
- Update 1 nuget dependencies [\#28](https://github.com/nanoframework/nanoFramework.M5Stack/pull/28)
66+
67+
## [v1.0.0-preview.66](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.66) (2021-06-20)
68+
69+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.64...v1.0.0-preview.66)
70+
71+
**Documentation and other chores:**
72+
73+
- Update 2 nuget dependencies [\#27](https://github.com/nanoframework/nanoFramework.M5Stack/pull/27)
74+
75+
## [v1.0.0-preview.64](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.64) (2021-06-09)
76+
77+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.62...v1.0.0-preview.64)
78+
79+
**Documentation and other chores:**
80+
81+
- Update 1 nuget dependencies [\#26](https://github.com/nanoframework/nanoFramework.M5Stack/pull/26)
82+
83+
## [v1.0.0-preview.62](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.62) (2021-06-08)
84+
85+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.60...v1.0.0-preview.62)
86+
87+
**Documentation and other chores:**
88+
89+
- Update 1 nuget dependencies [\#25](https://github.com/nanoframework/nanoFramework.M5Stack/pull/25)
90+
91+
## [v1.0.0-preview.60](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.60) (2021-06-04)
92+
93+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.58...v1.0.0-preview.60)
94+
95+
**Documentation and other chores:**
96+
97+
- Update 2 nuget dependencies [\#24](https://github.com/nanoframework/nanoFramework.M5Stack/pull/24)
98+
99+
## [v1.0.0-preview.58](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.58) (2021-06-01)
100+
101+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.56...v1.0.0-preview.58)
102+
103+
**Documentation and other chores:**
104+
105+
- Update 2 nuget dependencies [\#23](https://github.com/nanoframework/nanoFramework.M5Stack/pull/23)
106+
107+
## [v1.0.0-preview.56](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.56) (2021-06-01)
108+
109+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.54...v1.0.0-preview.56)
110+
111+
## [v1.0.0-preview.54](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.54) (2021-06-01)
112+
113+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.53...v1.0.0-preview.54)
114+
115+
**Documentation and other chores:**
116+
117+
- Update 2 nuget dependencies [\#21](https://github.com/nanoframework/nanoFramework.M5Stack/pull/21)
118+
119+
## [v1.0.0-preview.53](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.53) (2021-06-01)
120+
121+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.51...v1.0.0-preview.53)
122+
123+
## [v1.0.0-preview.51](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.51) (2021-06-01)
124+
125+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.49...v1.0.0-preview.51)
126+
127+
**Documentation and other chores:**
128+
129+
- Update 2 nuget dependencies [\#20](https://github.com/nanoframework/nanoFramework.M5Stack/pull/20)
130+
131+
## [v1.0.0-preview.49](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.49) (2021-06-01)
132+
133+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.47...v1.0.0-preview.49)
134+
135+
## [v1.0.0-preview.47](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.47) (2021-06-01)
136+
137+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.46...v1.0.0-preview.47)
138+
139+
**Documentation and other chores:**
140+
141+
- Update 2 nuget dependencies [\#19](https://github.com/nanoframework/nanoFramework.M5Stack/pull/19)
142+
143+
## [v1.0.0-preview.46](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.46) (2021-06-01)
144+
145+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.44...v1.0.0-preview.46)
146+
147+
## [v1.0.0-preview.44](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.44) (2021-06-01)
148+
149+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.39...v1.0.0-preview.44)
150+
151+
**Documentation and other chores:**
152+
153+
- Update 2 nuget dependencies [\#18](https://github.com/nanoframework/nanoFramework.M5Stack/pull/18)
154+
155+
## [v1.0.0-preview.39](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.39) (2021-05-31)
156+
157+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.37...v1.0.0-preview.39)
158+
159+
**Documentation and other chores:**
160+
161+
- Update 2 nuget dependencies [\#17](https://github.com/nanoframework/nanoFramework.M5Stack/pull/17)
162+
163+
## [v1.0.0-preview.37](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.37) (2021-05-31)
164+
165+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.35...v1.0.0-preview.37)
166+
167+
**Documentation and other chores:**
168+
169+
- Update 1 nuget dependencies [\#16](https://github.com/nanoframework/nanoFramework.M5Stack/pull/16)
170+
171+
## [v1.0.0-preview.35](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.35) (2021-05-30)
172+
173+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.33...v1.0.0-preview.35)
174+
175+
**Documentation and other chores:**
176+
177+
- Update 1 nuget dependencies [\#15](https://github.com/nanoframework/nanoFramework.M5Stack/pull/15)
178+
179+
## [v1.0.0-preview.33](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.33) (2021-05-26)
180+
181+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.31...v1.0.0-preview.33)
182+
183+
**Documentation and other chores:**
184+
185+
- Update 1 nuget dependencies [\#14](https://github.com/nanoframework/nanoFramework.M5Stack/pull/14)
186+
187+
## [v1.0.0-preview.31](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.31) (2021-05-20)
188+
189+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.29...v1.0.0-preview.31)
190+
191+
**Documentation and other chores:**
192+
193+
- Update 1 nuget dependencies [\#13](https://github.com/nanoframework/nanoFramework.M5Stack/pull/13)
194+
195+
## [v1.0.0-preview.29](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.29) (2021-05-14)
196+
197+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.27...v1.0.0-preview.29)
198+
199+
**Documentation and other chores:**
200+
201+
- Update 1 nuget dependencies [\#12](https://github.com/nanoframework/nanoFramework.M5Stack/pull/12)
202+
203+
## [v1.0.0-preview.27](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.27) (2021-05-05)
204+
205+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.23...v1.0.0-preview.27)
206+
207+
**Documentation and other chores:**
208+
209+
- Update 1 nuget dependencies [\#11](https://github.com/nanoframework/nanoFramework.M5Stack/pull/11)
210+
211+
## [v1.0.0-preview.23](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.23) (2021-04-11)
212+
213+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.19...v1.0.0-preview.23)
214+
215+
**Documentation and other chores:**
216+
217+
- Update 1 nuget dependencies [\#10](https://github.com/nanoframework/nanoFramework.M5Stack/pull/10)
218+
219+
## [v1.0.0-preview.19](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.19) (2021-03-03)
220+
221+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.15...v1.0.0-preview.19)
222+
223+
**Documentation and other chores:**
224+
225+
- Update 1 nuget dependencies [\#9](https://github.com/nanoframework/nanoFramework.M5Stack/pull/9)
226+
- Update 2 nuget dependencies [\#8](https://github.com/nanoframework/nanoFramework.M5Stack/pull/8)
227+
228+
## [v1.0.0-preview.15](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.15) (2021-02-12)
229+
230+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.11...v1.0.0-preview.15)
231+
232+
**Documentation and other chores:**
233+
234+
- Update dependencies [\#7](https://github.com/nanoframework/nanoFramework.M5Stack/pull/7)
235+
236+
## [v1.0.0-preview.11](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.11) (2020-10-21)
237+
238+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.9...v1.0.0-preview.11)
239+
240+
**Documentation and other chores:**
241+
242+
- Update dependencies [\#6](https://github.com/nanoframework/nanoFramework.M5Stack/pull/6)
243+
244+
## [v1.0.0-preview.9](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.9) (2020-10-01)
245+
246+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.2...v1.0.0-preview.9)
247+
248+
**Documentation and other chores:**
249+
250+
- Update dependencies [\#5](https://github.com/nanoframework/nanoFramework.M5Stack/pull/5)
251+
252+
## [v1.0.0-preview.2](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.2) (2020-09-19)
253+
254+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/v1.0.0-preview.14...v1.0.0-preview.2)
255+
256+
**Documentation and other chores:**
257+
258+
- Update dependencies [\#4](https://github.com/nanoframework/nanoFramework.M5Stack/pull/4)
259+
260+
## [v1.0.0-preview.14](https://github.com/nanoframework/nanoFramework.M5Stack/tree/v1.0.0-preview.14) (2020-07-04)
261+
262+
[Full Changelog](https://github.com/nanoframework/nanoFramework.M5Stack/compare/94b85bc7ac8353d293055b1b2d9ce6d930f5bc52...v1.0.0-preview.14)
263+
264+
**Documentation and other chores:**
265+
266+
- Update dependencies [\#3](https://github.com/nanoframework/nanoFramework.M5Stack/pull/3)
267+
268+
269+
270+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

CODE_OF_CONDUCT.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributor Code of Conduct
2+
3+
Please refer to the contributor Code of Conduct at the Home repository [here](https://github.com/nanoframework/Home/blob/main/CODE_OF_CONDUCT.md.

CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributing to **nanoFramework**
2+
3+
Please refer to the contribution guidelines at the Home repository [here](https://github.com/nanoframework/Home/blob/main/CONTRIBUTING.md).

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) .NET Foundation and Contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)