From 784ac1d150b0be7d318159fd11bd35e988ac3e28 Mon Sep 17 00:00:00 2001 From: Andy White Date: Thu, 25 Jul 2024 09:56:54 +1000 Subject: [PATCH] Bump version, expand on changelog, add author --- CHANGELOG.md | 28 ++++++++++++++++++++++------ bmt.gemspec | 4 ++-- lib/bmt/version.rb | 2 +- 3 files changed, 25 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea54e1c..f2408f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,15 +3,31 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/) -## [Unreleased] +## [0.6.0] - 2024-07-23 + +### Added +- AI LLM Testing Methodology + +## [0.5.2] + +### Changed +- Title of API Methodology updated + +## [0.5.1] - 2023-04-06 + +### Changes +- None; Version bump because we forgot to update the git submodule + +## [0.5.0] - 2023-04-05 + +### Added +- API Testing Methodology included + +## [0.4.0] - 2023-03-03 + ### Added - support for methodologies v0.1 - Added new methodology for mobile_ios - Added new methodology for mobile_android - Added new methodology for binaries - Added new methodology for network -- Added new methodology for Api Testing - -### Changed - -### Removed diff --git a/bmt.gemspec b/bmt.gemspec index b07bbce..ed069f4 100644 --- a/bmt.gemspec +++ b/bmt.gemspec @@ -7,8 +7,8 @@ Gem::Specification.new do |spec| spec.name = 'bmt' spec.version = Bmt::VERSION spec.platform = Gem::Platform::RUBY - spec.authors = ['Federico Tagliabue'] - spec.email = ['federico.tagliabue@bugcrowd.com'] + spec.authors = ['Federico Tagliabue', 'Andy White'] + spec.email = ['federico.tagliabue@bugcrowd.com', 'arcwhite@arcwhite.org'] spec.date = Date.today.to_s spec.summary = 'Ruby wrapper for Bugcrowd\'s Methodology Taxonomy' spec.homepage = 'https://github.com/bugcrowd/bmt-ruby' diff --git a/lib/bmt/version.rb b/lib/bmt/version.rb index 4649af3..29f9da6 100644 --- a/lib/bmt/version.rb +++ b/lib/bmt/version.rb @@ -1,3 +1,3 @@ module Bmt - VERSION = '0.5.2'.freeze + VERSION = '0.6.0'.freeze end