Skip to content

Commit

Permalink
3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed Jul 12, 2021
1 parent 30bd280 commit 541dcb6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@ cache:
directories:
- $HOME/.composer/cache

before_install:
- travis_retry composer self-update

install:
- if [[ $SETUP = 'stable' ]]; then travis_retry composer update --prefer-dist --prefer-stable; fi
- if [[ $SETUP = 'stable' ]]; then travis_retry composer update; fi
- if [[ $SETUP = 'lowest' ]]; then travis_retry composer require laravel/framework:^$LOWEST; composer require laravel/lumen-framework:^$LOWEST; fi
- if [[ $SETUP = 'lint' ]]; then composer lint; fi

script:
- if [[ $SETUP = 'lint' ]]; then exit 0; fi; composer test-parallel-ci;
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Removals

## 3.5.2 (Monday, 12 July 2021)
### Modified
- Internal change: refactor RouteDocBlocker (https://github.com/knuckleswtf/scribe/pull/272)

## 3.5.1 (Tuesday, 6 July 2021)
### Fixed
- Try It Out: Turn off autocomplete; make sure it works for array body; improve UI spacing ([579f672b57ad0417a5563aee1621b84c3b4ff1f2](https://github.com/knuckleswtf/scribe/commit/579f672b57ad0417a5563aee1621b84c3b4ff1f2), [2af8d8eacd661e0601b2d6f4dbc1766bf75e702a](https://github.com/knuckleswtf/scribe/commit/2af8d8eacd661e0601b2d6f4dbc1766bf75e702a))
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/Globals.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Globals
{
public const SCRIBE_VERSION = '3.5.1';
public const SCRIBE_VERSION = '3.5.2';

public static bool $shouldBeVerbose = false;
}
4 changes: 2 additions & 2 deletions tests/GenerateDocumentationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function can_skip_methods_and_classes_with_hidefromapidocumentation_tag()
}

/** @test */
public function can_skip_nonexistent_response_files()
public function warns_of_nonexistent_response_files()
{
RouteFacade::get('/api/non-existent', [TestController::class, 'withNonExistentResponseFile']);

Expand Down Expand Up @@ -383,7 +383,7 @@ public function generates_correct_url_params_from_resource_routes_and_field_bind
}

/** @test */
public function will_not_extract_if_noExtraction_flag_is_set()
public function will_generate_without_extracting_if_noExtraction_flag_is_set()
{
config(['scribe.routes.0.exclude' => ['*']]);
Utils::copyDirectory(__DIR__.'/Fixtures/.scribe', '.scribe');
Expand Down

0 comments on commit 541dcb6

Please sign in to comment.