Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark C# and Go and as Unmaintained #423

Merged
merged 3 commits into from
Apr 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,22 @@ The LCM project is active again. The current near-term plan is to:

* Platforms:
* GNU/Linux
* OS X
* Windows
* Any POSIX-1.2001 system (e.g., Cygwin, Solaris, BSD, etc.)
* Ubuntu (20.04 and 22.04)
* Fedora (37)
* macOS (11 and 12)
* Windows (2019 and 2022) via MSYS2
* Languages
* C
* C++
* C#
* Go
* Java
* Lua
* MATLAB
* Python

## Unmaintained languages

The following languages are currently unmaintained. PRs for these languages are still welcome and if
you are interested in maintaining them please let us know.

* Go
* C#/.NET
9 changes: 5 additions & 4 deletions docs/release_checklist
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

1. Update NEWS (use Markdown syntax)
2. Verify that all manpages are up to date
3. Bump the version number in:
3. Verify that supported platforms and version numbers are correct in the README
4. Bump the version number in:
a. lcm/lcm_version.h
b. lcm-lua/rock/lcm-<version>-0.rockspec
4. Commit the above changes and create the vX.Y.Z git tag.
5. Commit the above changes and create the vX.Y.Z git tag.
$ git commit -a -m "Release X.Y.Z"
$ git tag vX.Y.Z
5. Create the release artifact
6. Create the release artifact
$ git archive --format zip -o lcm-X.Y.Z.zip --prefix lcm-X.Y.Z/ vX.Y.Z
6. Take the resulting artifact, extract it, build it, install it, make sure
7. Take the resulting artifact, extract it, build it, install it, make sure
the basic executables run
$ unzip lcm-X.Y.Z.zip
$ cd lcm-X.Y.Z
Expand Down