Skip to content

Commit 16e14c6

Browse files
authored
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
1 parent 9f7dcdf commit 16e14c6

File tree

9 files changed

+11
-18
lines changed

9 files changed

+11
-18
lines changed

.bundle/config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
---
2-
BUNDLE_WITHOUT: "development"
3-
BUNDLE_WITH: "test:tests"
2+
BUNDLE_WITHOUT: "development:test"

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Verify first that your issue/request has not been posted previously:
55
* https://github.com/beefproject/beef/issues
66
* https://github.com/beefproject/beef/wiki/FAQ
77

8-
Ensure you're using the [latest version of BeEF](https://github.com/beefproject/beef/releases/tag/beef-0.5.0.0).
8+
Ensure you're using the [latest version of BeEF](https://github.com/beefproject/beef/releases/tag/v0.5.1.0).
99

1010
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:
1111

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ extensions/metasploit/msf-exploits.cache
1616
# ruby debugging
1717
.byebug_history
1818

19+
# Bundler
20+
/.bundle
21+
/vendor
22+
1923
#simplecov
2024
coverage/
2125

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,6 @@ Requirements
4141
* The gems listed in the Gemfile: https://github.com/beefproject/beef/blob/master/Gemfile
4242
* Selenium is required on OSX: `brew install selenium-server-standalone` (See https://github.com/shvets/selenium)
4343

44-
45-
ActiveRecord
46-
-----------
47-
ActiveRecord was used to replace DataMapper, and now Ruby 2.4 is no longer supported.
48-
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.
49-
50-
5144
Quick Start
5245
-----------
5346

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# See the file 'doc/COPYING' for copying permission
55
#
66

7-
0.5.0.0-alpha-pre
7+
0.5.1.0

config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# BeEF Configuration file
77

88
beef:
9-
version: '0.5.0.0-alpha-pre'
9+
version: '0.5.1.0'
1010
# More verbose messages (server-side)
1111
debug: false
1212
# More verbose messages (client-side)

docs/index.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,6 @@ <h2>Requirements</h2>
6969
<li>The gems listed in the Gemfile: https://github.com/beefproject/beef/blob/master/Gemfile</li>
7070
<li>Selenium is required on OSX: brew install selenium-server-standalone (See https://github.com/shvets/selenium)</li>
7171
</ul>
72-
<h2>ActiveRecord</h2>
73-
<p>ActiveRecord was used to replace DataMapper, and now ruby 2.4 is no longer supported.
74-
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.</p>
7572
<h2>Quick Start</h2>
7673
<p><strong>The following is for the impatient.</strong></p>
7774
<p>The <code>install</code> script installs the required operating system packages and all the prerequisite Ruby gems:</p>
@@ -106,4 +103,4 @@ <h2><a href="index.html">Home</a></h2><h3>Namespaces</h3><ul><li><a href="beef.a
106103
<script> prettyPrint(); </script>
107104
<script src="scripts/linenumber.js"> </script>
108105
</body>
109-
</html>
106+
</html>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "BeEF",
3-
"version": "0.4.7.4-alpha-pre",
3+
"version": "0.5.1.0",
44
"description": "The Browser Exploitation Framework Project",
55
"scripts": {
66
"docs": "./node_modules/.bin/jsdoc -c conf.json"

0 commit comments

Comments
 (0)