Skip to content

Commit

Permalink
Merge pull request #273 from lf-lang/v0.8.0
Browse files Browse the repository at this point in the history
V0.8.0
  • Loading branch information
lhstrh authored Jul 2, 2024
2 parents aeeeb57 + 3c80e4b commit 949897f
Show file tree
Hide file tree
Showing 2 changed files with 233 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ git pull
git checkout -b v<major>.<minor>.<patch>
yarn docusaurus docs:version <major>.<minor>.<patch>
git add versioned_docs/*
git add versioned_sidebars/*
git commit -a -m 'Docs v<major>.<minor>.<patch>'
```
232 changes: 232 additions & 0 deletions versioned_sidebars/version-0.8.0-sidebars.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,232 @@
{
"handbookSidebar": [
{
"type": "doc",
"id": "introduction"
},
{
"type": "doc",
"id": "installation"
},
{
"type": "doc",
"id": "tutorial-videos"
},
{
"type": "category",
"label": "Writing Reactors",
"collapsible": true,
"collapsed": true,
"items": [
{
"type": "doc",
"id": "writing-reactors/a-first-reactor"
},
{
"type": "doc",
"id": "writing-reactors/inputs-and-outputs"
},
{
"type": "doc",
"id": "writing-reactors/parameters-and-state-variables"
},
{
"type": "doc",
"id": "writing-reactors/time-and-timers"
},
{
"type": "doc",
"id": "writing-reactors/composing-reactors"
},
{
"type": "doc",
"id": "writing-reactors/reactions"
},
{
"type": "doc",
"id": "writing-reactors/reaction-declarations"
},
{
"type": "doc",
"id": "writing-reactors/methods"
},
{
"type": "doc",
"id": "writing-reactors/causality-loops"
},
{
"type": "doc",
"id": "writing-reactors/extending-reactors"
},
{
"type": "doc",
"id": "writing-reactors/actions"
},
{
"type": "doc",
"id": "writing-reactors/superdense-time"
},
{
"type": "doc",
"id": "writing-reactors/modal-models"
},
{
"type": "doc",
"id": "writing-reactors/deadlines"
},
{
"type": "doc",
"id": "writing-reactors/multiports-and-banks"
},
{
"type": "doc",
"id": "writing-reactors/generics"
},
{
"type": "doc",
"id": "writing-reactors/preambles"
},
{
"type": "doc",
"id": "writing-reactors/distributed-execution"
},
{
"type": "doc",
"id": "writing-reactors/termination"
}
]
},
{
"type": "category",
"label": "Tools",
"collapsible": true,
"collapsed": true,
"items": [
{
"type": "doc",
"id": "tools/code-extension"
},
{
"type": "doc",
"id": "tools/epoch-ide"
},
{
"type": "doc",
"id": "tools/command-line-tools"
},
{
"type": "doc",
"id": "tools/documentation"
},
{
"type": "doc",
"id": "tools/troubleshooting"
}
]
},
{
"type": "category",
"label": "Reference",
"collapsible": true,
"collapsed": true,
"items": [
{
"type": "doc",
"id": "reference/docker-support"
},
{
"type": "doc",
"id": "reference/expressions"
},
{
"type": "doc",
"id": "reference/target-language-details"
},
{
"type": "doc",
"id": "reference/target-declaration"
},
{
"type": "doc",
"id": "reference/tracing"
},
{
"type": "doc",
"id": "reference/security"
}
]
},
{
"type": "category",
"label": "Embedded Platforms",
"collapsible": true,
"collapsed": true,
"items": [
{
"type": "doc",
"id": "embedded/arduino"
},
{
"type": "doc",
"id": "embedded/zephyr"
},
{
"type": "doc",
"id": "embedded/rp2040"
},
{
"type": "doc",
"id": "embedded/nRF52"
},
{
"type": "doc",
"id": "embedded/flexpret"
}
]
},
{
"type": "category",
"label": "Developer",
"collapsible": true,
"collapsed": true,
"items": [
{
"type": "doc",
"id": "developer/contributing"
},
{
"type": "doc",
"id": "developer/developer-eclipse-setup-with-oomph"
},
{
"type": "doc",
"id": "developer/developer-intellij-setup"
},
{
"type": "doc",
"id": "developer/downloading-and-building"
},
{
"type": "doc",
"id": "developer/debugging-generated-code"
},
{
"type": "doc",
"id": "developer/on-target-development"
},
{
"type": "doc",
"id": "developer/regression-tests"
},
{
"type": "doc",
"id": "developer/running-benchmarks"
},
{
"type": "doc",
"id": "developer/website-development"
}
]
}
]
}

0 comments on commit 949897f

Please sign in to comment.