Skip to content

Commit

Permalink
add bullseye release and bookworm suite
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieucan committed Aug 16, 2021
1 parent 4c03ebd commit 18e6b17
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/new-release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# When a new Debian release is out

* update debsources/consts.txt
* update lib/debsources/consts.txt
Remember to also add oldrelease-backports-sloppy if relevant.
* archive oldoldstable (see doc/archiving-a-suite.txt)
8 changes: 7 additions & 1 deletion lib/debsources/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,13 @@
"squeeze": {"version": "6.0", "date": datetime.date(2011, 2, 6), "archived": True},
"wheezy": {"version": "7", "date": datetime.date(2013, 5, 4), "archived": True},
"jessie": {"version": "8", "date": datetime.date(2015, 4, 25), "archived": True},
"stretch": {"version": "9", "date": datetime.date(2017, 6, 17), "archived": False},
"stretch": {"version": "9", "date": datetime.date(2017, 6, 17), "archived": True},
"buster": {"version": "10", "date": datetime.date(2019, 7, 6), "archived": False},
"bullseye": {
"version": "11",
"date": datetime.date(2021, 8, 14),
"archived": False,
},
}

SUITES = {
Expand All @@ -224,6 +229,7 @@
"stretch",
"buster",
"bullseye",
"bookworm",
"sid",
],
"devel": [], # known release variants; filled below
Expand Down

0 comments on commit 18e6b17

Please sign in to comment.