From 16e14c6f2e3626ae9cb6400c1ea1df95ea66791f Mon Sep 17 00:00:00 2001 From: wheatley Date: Sat, 4 Sep 2021 14:56:47 +1000 Subject: [PATCH] Release 0.5.1.0 (#2156) * updated version to 5.0.1.0 in package.json * updated version to 5.0.1.0 in VERSION * updated version to 5.0.1.0 in config.yml * removed Active Record section * cleanup bundle related folders and added to .gitignore * bumped tag url in ISSUETEMPLATE * updating version to 0.5.1.0 * readding .bundle/config as we do not want users to automatically install dev/test gems * fixed spelling mistake of .bundle --- .bundle/config | 3 +-- .github/ISSUE_TEMPLATE.md | 2 +- .gitignore | 4 ++++ README.md | 7 ------- VERSION | 2 +- config.yaml | 2 +- docs/index.html | 5 +---- package-lock.json | 2 +- package.json | 2 +- 9 files changed, 11 insertions(+), 18 deletions(-) diff --git a/.bundle/config b/.bundle/config index e7db70bb4..4d97827e4 100644 --- a/.bundle/config +++ b/.bundle/config @@ -1,3 +1,2 @@ --- -BUNDLE_WITHOUT: "development" -BUNDLE_WITH: "test:tests" +BUNDLE_WITHOUT: "development:test" diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 40160d09f..26cb2946f 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -5,7 +5,7 @@ Verify first that your issue/request has not been posted previously: * https://github.com/beefproject/beef/issues * https://github.com/beefproject/beef/wiki/FAQ -Ensure you're using the [latest version of BeEF](https://github.com/beefproject/beef/releases/tag/beef-0.5.0.0). +Ensure you're using the [latest version of BeEF](https://github.com/beefproject/beef/releases/tag/v0.5.1.0). Please do your best to provide as much information as possible. It will help substantially if you can enable and provide debugging logs with your issue. Instructions for enabling debugging logs are below: diff --git a/.gitignore b/.gitignore index c22886112..6da554aa4 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,10 @@ extensions/metasploit/msf-exploits.cache # ruby debugging .byebug_history +# Bundler +/.bundle +/vendor + #simplecov coverage/ diff --git a/README.md b/README.md index 72de57a53..82a34f01a 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,6 @@ Requirements * The gems listed in the Gemfile: https://github.com/beefproject/beef/blob/master/Gemfile * Selenium is required on OSX: `brew install selenium-server-standalone` (See https://github.com/shvets/selenium) - -ActiveRecord ------------ -ActiveRecord was used to replace DataMapper, and now Ruby 2.4 is no longer supported. -If you're using ruby 2.4 please update your BeEF version, otherwise [beef-0.4.7.3](https://github.com/beefproject/beef/releases/tag/beef-0.4.7.3) has the beef branch before the ActiveRecord Merge. - - Quick Start ----------- diff --git a/VERSION b/VERSION index 6d720a986..18e4217fa 100644 --- a/VERSION +++ b/VERSION @@ -4,4 +4,4 @@ # See the file 'doc/COPYING' for copying permission # -0.5.0.0-alpha-pre +0.5.1.0 diff --git a/config.yaml b/config.yaml index 5629a0c62..4a72eb4fe 100644 --- a/config.yaml +++ b/config.yaml @@ -6,7 +6,7 @@ # BeEF Configuration file beef: - version: '0.5.0.0-alpha-pre' + version: '0.5.1.0' # More verbose messages (server-side) debug: false # More verbose messages (client-side) diff --git a/docs/index.html b/docs/index.html index 64c3ed640..130041203 100644 --- a/docs/index.html +++ b/docs/index.html @@ -69,9 +69,6 @@ See the file 'doc/COPYING' for copying permission
  • The gems listed in the Gemfile: https://github.com/beefproject/beef/blob/master/Gemfile
  • Selenium is required on OSX: brew install selenium-server-standalone (See https://github.com/shvets/selenium)
  • -

    ActiveRecord

    -

    ActiveRecord was used to replace DataMapper, and now ruby 2.4 is no longer supported. -If you're using ruby 2.4 please update your BeEF version, otherwise master-0.4.7.3 has the beef branch before the ActiveRecord Merge.

    Quick Start

    The following is for the impatient.

    The install script installs the required operating system packages and all the prerequisite Ruby gems:

    @@ -106,4 +103,4 @@ If you're using ruby 2.4 please update your BeEF version, otherwise master-0.4.7 - \ No newline at end of file + diff --git a/package-lock.json b/package-lock.json index a4129db79..deaeb81bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { "name": "BeEF", - "version": "0.4.7.4-alpha-pre", + "version": "0.5.1.0", "lockfileVersion": 1 } diff --git a/package.json b/package.json index 31eb52145..a7ed079af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "BeEF", - "version": "0.4.7.4-alpha-pre", + "version": "0.5.1.0", "description": "The Browser Exploitation Framework Project", "scripts": { "docs": "./node_modules/.bin/jsdoc -c conf.json"