Skip to content

Commit

Permalink
[REL] 18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-fence committed Sep 25, 2024
1 parent 9c9b65c commit b6fcb6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { browser } from "../../core/browser/browser";
import { registry } from "../../core/registry";

function documentationItem(env) {
const documentationURL = "https://www.odoo.com/documentation/master";
const documentationURL = "https://www.odoo.com/documentation/18.0";
return {
type: "item",
id: "documentation",
Expand Down
2 changes: 1 addition & 1 deletion odoo/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# properly comparable using normal operators, for example:
# (6,1,0,'beta',0) < (6,1,0,'candidate',1) < (6,1,0,'candidate',2)
# (6,1,0,'candidate',2) < (6,1,0,'final',0) < (6,1,2,'final',0)
version_info = (17, 5, 0, ALPHA, 1, '')
version_info = (18, 0, 0, FINAL, 0, '')
version = '.'.join(str(s) for s in version_info[:2]) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '') + version_info[5]
series = serie = major_version = '.'.join(str(s) for s in version_info[:2])

Expand Down

0 comments on commit b6fcb6d

Please sign in to comment.