Skip to content

Commit 8bd0638

Browse files
authored
Merge pull request #43 from Neotron-Compute/release/v0.3.3
Release/v0.3.3
2 parents 3169e13 + adf1fbc commit 8bd0638

File tree

11 files changed

+733
-68
lines changed

11 files changed

+733
-68
lines changed

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: Neotron-Compute
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
/target
22
**/*.rs.bk
3-
Cargo.lock
43
/release

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## Unreleased changes
44

5+
## v0.3.3
6+
7+
* Add `dir` command
8+
* Change `load` command to load from disk
9+
* Repository includes `Cargo.lock` file
10+
* Update to `postcard` 1.0
11+
* Fix `readblk` help text, and print 32 bytes per line
12+
513
## v0.3.2
614

715
* Add `date` command.

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "neotron-os"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
authors = ["Jonathan 'theJPster' Pallant <github@thejpster.org.uk>", "The Neotron Developers"]
55
edition = "2018"
66
description = "The Neotron Operating System"
@@ -25,6 +25,7 @@ bench = false
2525

2626
[lib]
2727
crate-type = ["rlib", "cdylib"]
28+
required-features = ["native-log"]
2829

2930
[profile.release]
3031
lto = true
@@ -40,7 +41,8 @@ panic = "abort"
4041
neotron-common-bios = "0.8"
4142
pc-keyboard = "0.7"
4243
r0 = "1.0"
43-
postcard = "0.5"
44+
postcard = "1.0"
4445
serde = { version = "1.0", default-features = false }
4546
menu = "0.3"
4647
chrono = { version = "0.4", default-features = false }
48+
embedded-sdmmc = { version = "0.5", default-features = false }

0 commit comments

Comments
 (0)