Skip to content

Commit b900bc3

Browse files
committed
release v0.3.2
1 parent 3c6a2c5 commit b900bc3

File tree

5 files changed

+66
-2
lines changed

5 files changed

+66
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
10+
## [0.3.2 - 2017-11-08]
11+
### Added
12+
- make the Sduino versions of the built-in examples visible in the IDE
13+
- support for compiling .pde and .ino files using the makefile
14+
15+
### Fixed
16+
- makefile Arduino.mk uses the same tools path then the IDE
17+
- use more scripts to generate cleaner release archive files
18+
19+
20+
921
## [0.3.1 - 2017-11-06]
1022
### Fixed
1123
- don't use symlinks in archives for Windows anymore (#25)

board-manager/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# the required versions for the new build
2-
COREVERSION=0.3.1
2+
COREVERSION=0.3.2
33
SDCCVERSION=10088
44
TOOLSVERSION=2017.11.06
55

board-manager/Makefile.core

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $(PLATFORM_ENTRY): $(COREFILE)
3333

3434
$(COREFILE): | $(COREDIR)
3535
echo "Generating the core archive file."
36-
(cd ..; git archive -v --format=tar HEAD:$(SUBTREE))|\
36+
(cd ..; git archive -v --prefix=./ --format=tar HEAD:$(SUBTREE))|\
3737
bzip2 > $(COREFILE)
3838

3939
# make a new release directory if not present
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "Sduino STM8 plain C core (non-C++)",
3+
"architecture": "stm8",
4+
"version": "0.3.2",
5+
"category": "Contributed",
6+
"boards": [
7+
{"name": "STM8S103F3 Breakout Board"},
8+
{"name": "STM8S105C6 Discovery Board"}
9+
],
10+
"toolsDependencies": [
11+
{
12+
"name": "STM8Tools",
13+
"version": "2017.11.06",
14+
"packager": "sduino"
15+
},
16+
{
17+
"name": "sdcc",
18+
"version": "build.10088",
19+
"packager": "sduino"
20+
}
21+
],
22+
"url": "https://github.com/tenbaht/sduino/releases/download/v0.3.2/sduino-core-0.3.2.tar.bz2",
23+
"archiveFileName": "sduino-core-0.3.2.tar.bz2",
24+
"checksum": "SHA-256:dc10f5b21030db9ccc1cc8b935a7f2cf48bc1226629b3e7c87e7047c79b5c9ae",
25+
"size": "5627842"
26+
},

package_sduino_stm8_index.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,32 @@
99
"online": "http://www.stm32duino.com/viewforum.php?f=52"
1010
},
1111
"platforms" : [
12+
{
13+
"name": "Sduino STM8 plain C core (non-C++)",
14+
"architecture": "stm8",
15+
"version": "0.3.2",
16+
"category": "Contributed",
17+
"boards": [
18+
{"name": "STM8S103F3 Breakout Board"},
19+
{"name": "STM8S105C6 Discovery Board"}
20+
],
21+
"toolsDependencies": [
22+
{
23+
"name": "STM8Tools",
24+
"version": "2017.11.06",
25+
"packager": "sduino"
26+
},
27+
{
28+
"name": "sdcc",
29+
"version": "build.10088",
30+
"packager": "sduino"
31+
}
32+
],
33+
"url": "https://github.com/tenbaht/sduino/releases/download/v0.3.2/sduino-core-0.3.2.tar.bz2",
34+
"archiveFileName": "sduino-core-0.3.2.tar.bz2",
35+
"checksum": "SHA-256:dc10f5b21030db9ccc1cc8b935a7f2cf48bc1226629b3e7c87e7047c79b5c9ae",
36+
"size": "5627842"
37+
},
1238
{
1339
"name": "Sduino STM8 plain C core (non-C++)",
1440
"architecture": "stm8",

0 commit comments

Comments
 (0)