Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-modules/i18n
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.10.0
Choose a base ref
...
head repository: nuxt-modules/i18n
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.10.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Apr 23, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    suzuki-shunsuke Shunsuke Suzuki
    Copy the full SHA
    a495cb3 View commit details
  2. chore: release 6.10.1

    rchl committed Apr 23, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8d0ac18 View commit details
Showing with 9 additions and 2 deletions.
  1. +7 −0 CHANGELOG.md
  2. +1 −1 package.json
  3. +1 −1 types/nuxt-i18n.d.ts
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### [6.10.1](https://github.com/nuxt-community/nuxt-i18n/compare/v6.10.0...v6.10.1) (2020-04-23)


### Bug Fixes

* **types:** fix type of baseUrl to allow string ([a495cb3](https://github.com/nuxt-community/nuxt-i18n/commit/a495cb3ad0c9cf42b1e0c23c5e5be7b08caefdc5))

## [6.10.0](https://github.com/nuxt-community/nuxt-i18n/compare/v6.9.3...v6.10.0) (2020-04-23)


2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nuxt-i18n",
"version": "6.10.0",
"version": "6.10.1",
"description": "i18n for Nuxt",
"license": "MIT",
"contributors": [
2 changes: 1 addition & 1 deletion types/nuxt-i18n.d.ts
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ declare namespace NuxtVueI18n {

// see options reference: https://github.com/nuxt-community/nuxt-i18n/blob/master/docs/options-reference.md
interface AllOptionsInterface extends NuxtI18nInterface {
baseUrl?: (context: NuxtContext) => string | string
baseUrl?: string | ((context: NuxtContext) => string)
detectBrowserLanguage?: DetectBrowserLanguageInterface
encodePaths?: boolean
langDir?: string | null