Skip to content

Commit

Permalink
Merge pull request #43 from Neotron-Compute/release/v0.3.3
Browse files Browse the repository at this point in the history
Release/v0.3.3
  • Loading branch information
thejpster committed May 22, 2023
2 parents 3169e13 + adf1fbc commit 8bd0638
Show file tree
Hide file tree
Showing 11 changed files with 733 additions and 68 deletions.
13 changes: 13 additions & 0 deletions .github/FUNDING.yml
@@ -0,0 +1,13 @@
# These are supported funding model platforms

github: Neotron-Compute
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
1 change: 0 additions & 1 deletion .gitignore
@@ -1,4 +1,3 @@
/target
**/*.rs.bk
Cargo.lock
/release
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,14 @@

## Unreleased changes

## v0.3.3

* Add `dir` command
* Change `load` command to load from disk
* Repository includes `Cargo.lock` file
* Update to `postcard` 1.0
* Fix `readblk` help text, and print 32 bytes per line

## v0.3.2

* Add `date` command.
Expand Down
283 changes: 283 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "neotron-os"
version = "0.3.2"
version = "0.3.3"
authors = ["Jonathan 'theJPster' Pallant <github@thejpster.org.uk>", "The Neotron Developers"]
edition = "2018"
description = "The Neotron Operating System"
Expand All @@ -25,6 +25,7 @@ bench = false

[lib]
crate-type = ["rlib", "cdylib"]
required-features = ["native-log"]

[profile.release]
lto = true
Expand All @@ -40,7 +41,8 @@ panic = "abort"
neotron-common-bios = "0.8"
pc-keyboard = "0.7"
r0 = "1.0"
postcard = "0.5"
postcard = "1.0"
serde = { version = "1.0", default-features = false }
menu = "0.3"
chrono = { version = "0.4", default-features = false }
embedded-sdmmc = { version = "0.5", default-features = false }

0 comments on commit 8bd0638

Please sign in to comment.