diff --git a/README.md b/README.md index 4ae68fb..4b4a4fb 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,10 @@ Must be using Git and it must be in your path. --- ## Release Notes +### 0.5.2 + + - Fixes loading issue on Linux + ### 0.5.1 - Adds blame information in the statusBar diff --git a/package.json b/package.json index e9fe537..20c328f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "0.5.1", + "version": "0.5.2", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com" diff --git a/src/gitCodeLensProvider.ts b/src/gitCodeLensProvider.ts index c40465f..b4b70d9 100644 --- a/src/gitCodeLensProvider.ts +++ b/src/gitCodeLensProvider.ts @@ -5,7 +5,7 @@ import {CodeLensCommand, CodeLensLocation, ICodeLensesConfig} from './configurat import GitProvider, {IGitBlame, IGitBlameLines, IGitCommit} from './gitProvider'; import * as moment from 'moment'; -const escapeRegExp = require('lodash.escapeRegExp'); +const escapeRegExp = require('lodash.escaperegexp'); export class GitRecentChangeCodeLens extends CodeLens { constructor(private git: GitProvider, public fileName: string, public symbolKind: SymbolKind, public blameRange: Range, range: Range) {