Skip to content

Commit

Permalink
🔖 Release v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Feb 25, 2021
1 parent 788784f commit 119356c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

### Changed

### Fixed

## [0.2.3] - 2021-02-25

### Changed
- `TigerGraphDriver::authKey` never null and now just blank if not set
- Removed `log4f2.properties` under the main artifact
- Made the visibility of driver constructors module specific so that users are forced
to use the `DriverFactory`
- `connect` methods on drivers now return the driver instead of nothing.

### Fixed

## [0.2.2] - 2021-02-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion plume/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ dockerCompose {
def artifactDesc = "Plume is a code property graph analysis library with options to extract the CPG from" +
" Java bytecode and store the result in various graph databases."
def repoUrl = "https://github.com/plume-oss/plume.git"
def artifactVersion = "0.2.2"
def artifactVersion = "0.2.3"
def website = "https://plume-oss.github.io/plume-docs/"

group = "io.github.plume-oss"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.shiftleft.codepropertygraph.generated.NodeKeyNames

object ExtractorConst {
const val LANGUAGE_FRONTEND = "Plume"
const val LANGUAGE_FRONTEND_VERSION = "0.2.2"
const val LANGUAGE_FRONTEND_VERSION = "0.2.3"
val PRIMITIVES = listOf("boolean", "byte", "char", "double", "float", "int", "long", "null", "short", "void")
// block bodies
const val ENTRYPOINT = "BODY"
Expand Down

0 comments on commit 119356c

Please sign in to comment.