From 382d1cca41eaee389f2a0a5651bba4247df81cf7 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Mon, 10 Feb 2025 16:54:06 -0800 Subject: [PATCH] simple RELEASES.md --- RELEASES.md | 9 +++++++++ pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 RELEASES.md diff --git a/RELEASES.md b/RELEASES.md new file mode 100644 index 00000000..adc48e93 --- /dev/null +++ b/RELEASES.md @@ -0,0 +1,9 @@ +Version 0.2.0 (2025-02-10) +======================== +* Moved car/ directory from openpilot to opendbc. It comprises the APIs necessary to communicate with 275+ car models + * opendbc is moving towards being a complete self-contained car API package + * Soon all opendbc-related tests from openpilot will be migrated as well + +Version 0.1.0 (2024-08-01) +======================== +* Initial pre-release package with can/ and dbc/ directories diff --git a/pyproject.toml b/pyproject.toml index 42c46310..02542da9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "opendbc" -version = "0.1.1" +version = "0.2.0" description = "CAN bus databases and tools" license = { file = "LICENSE" } authors = [{ name = "Vehicle Researcher", email = "user@comma.ai" }]