Skip to content

Commit

Permalink
release template_v1.0.1
Browse files Browse the repository at this point in the history
See CHANGELOG for details

Signed-off-by: Mike Szczys <[email protected]>
  • Loading branch information
szczys committed Jul 14, 2023
1 parent 2dc1038 commit c417204
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - TBD
## [1.0.1] - 2023-07-14

### Fixed
- Turn Golioth LED on when connected
- Desired endpoints will be correctly reset when example_int1 is changed by itself
- Turn on Golioth LED when connected
- Correctly reset `desired` endpoints when `example_int1` is changed by itself
- Fix deadlock behavior when running `set_log_level` RPC multiple times
- Add missing license info
- Removed unused dependencies
- Code formatting
- Typos
- Document forking/merging recommendations

## [1.0.0] - 2023-07-11

Expand Down
27 changes: 27 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,33 @@ from ``west.yml`` and remove the includes/function calls from the C code.
* `libostentus`_ is a helper library for controlling the Ostentus ePaper
faceplate

Using this template to start a new project
******************************************

Fork this template to create your own Reference Design. After checking out your fork, we recommend
the following workflow to pull in future changes:

* Setup
* Create a ``template`` remote based on the Reference Design Template repository
* Merge in template changes
* Fetch template changes and tags
* Merge template release tag into your ``main`` (or other branch)
* Resolve merge conflicts (if any) and commit to your repository

.. code-block:: console
# Setup
git remote add template https://github.com/golioth/reference-design-template.git
git fetch template --tags
# Merge in template changes
git fetch template --tags
git checkout your_local_branch
git merge template_v1.0.0
# Resolve merge conflicts if necessry
git add resolved_files
git commit
.. _Golioth Console: https://console.golioth.io
.. _Nordic nRF9160 DK: https://www.nordicsemi.com/Products/Development-hardware/nrf9160-dk
.. _golioth-zephyr-boards: https://github.com/golioth/golioth-zephyr-boards
Expand Down

0 comments on commit c417204

Please sign in to comment.