Skip to content

Commit

Permalink
preparing for v0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermesena1 committed Nov 27, 2019
1 parent d0f7a6e commit 0a49745
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dnl WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dnl General Public License for more details.

AC_INIT([falco], [0.1.1], [[email protected]],
AC_INIT([falco], [0.2], [[email protected]],
[falco], [https://github.com/smithlabcode/falco])
dnl the config.h is not currently #included in the source, and only
dnl used to keep command lines short.
Expand Down
3 changes: 2 additions & 1 deletion src/falco.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ write_results(const FalcoConfig &falco_config,
int main(int argc, const char **argv) {

try {
static const string FALCO_VERSION = "falco v0.2";
bool help = false;
bool version = false;

Expand Down Expand Up @@ -389,7 +390,7 @@ int main(int argc, const char **argv) {
return EXIT_SUCCESS;
}
if (version) {
cout << "Falco v0.1.1\n";
cout << FALCO_VERSION << "\n";
return EXIT_SUCCESS;
}
if (opt_parse.about_requested()) {
Expand Down

0 comments on commit 0a49745

Please sign in to comment.