Skip to content

Commit

Permalink
Bump 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
david942j committed Feb 10, 2019
1 parent 8444abf commit d4f14b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,3 @@ checks:
method-complexity:
config:
threshold: 12
exclude_patterns:
- "spec/"
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
gdb (0.3.0)
gdb (1.0.0)
memory_io (~> 0.1.1)
pry (~> 0.11)

Expand All @@ -10,7 +10,7 @@ GEM
specs:
ast (2.4.0)
coderay (1.1.2)
dentaku (3.2.1)
dentaku (3.3.0)
diff-lcs (1.3)
docile (1.3.1)
jaro_winkler (1.5.2)
Expand Down
2 changes: 1 addition & 1 deletion lib/gdb/scripts/gdbinit.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _prompt_hook(self, current_prompt):
return self.gdbruby_prompt + org

def _gen_prompt(self):
rnd = ''.join([random.choice(string.ascii_lowercase) for i in range(8)])
rnd = ''.join([random.choice(string.ascii_lowercase) for i in range(20)])
return '(gdb-ruby-%s)' % rnd

__commands__ = []
Expand Down
2 changes: 1 addition & 1 deletion lib/gdb/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module GDB
# The current version of GDB.
VERSION = '0.3.0'.freeze
VERSION = '1.0.0'.freeze
end

0 comments on commit d4f14b4

Please sign in to comment.