Skip to content

Commit

Permalink
Bump version to 0.9.43-dev after release
Browse files Browse the repository at this point in the history
  • Loading branch information
florianschanda committed Jul 17, 2023
1 parent 17e5f95 commit be32183
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Not quite compatible with Octave yet. See #43 [octave support](https://github.co
## Changelog


### 0.9.43-dev



### 0.9.42

* Fix issue with MATLAB functions embedded in Simulink. Usually people
Expand Down
2 changes: 1 addition & 1 deletion docs/bmc.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Bounded Model Checker</header>
<header>MISS_HIT 0.9.43-dev Bounded Model Checker</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/cli.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Command-line Interface</header>
<header>MISS_HIT 0.9.43-dev Command-line Interface</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Configuration System</header>
<header>MISS_HIT 0.9.43-dev Configuration System</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/copyright.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Copyright Tool</header>
<header>MISS_HIT 0.9.43-dev Copyright Tool</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/diff.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Diff Tool</header>
<header>MISS_HIT 0.9.43-dev Diff Tool</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Documentation</header>
<header>MISS_HIT 0.9.43-dev Documentation</header>
<main>
<div class="section">
MISS_HIT is a compiler framework for the MATLAB and Octave
Expand Down
2 changes: 1 addition & 1 deletion docs/lint.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Linter</header>
<header>MISS_HIT 0.9.43-dev Linter</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/metrics.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Code Metrics</header>
<header>MISS_HIT 0.9.43-dev Code Metrics</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/pragmas.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Pragmas</header>
<header>MISS_HIT 0.9.43-dev Pragmas</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/style_checker.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Style Checker</header>
<header>MISS_HIT 0.9.43-dev Style Checker</header>

<main>
<div class="section">
Expand Down
2 changes: 1 addition & 1 deletion docs/trace.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>

<body>
<header>MISS_HIT 0.9.42 Tracing Tool</header>
<header>MISS_HIT 0.9.43-dev Tracing Tool</header>

<main>
<div class="section">
Expand Down
4 changes: 2 additions & 2 deletions miss_hit_core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

GITHUB_ISSUES = "https://github.com/florianschanda/miss_hit/issues"

VERSION_TUPLE = (0, 9, 42)
VERSION_SUFFIX = ""
VERSION_TUPLE = (0, 9, 43)
VERSION_SUFFIX = "dev"

VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \
("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")
Expand Down

0 comments on commit be32183

Please sign in to comment.