Skip to content

Commit

Permalink
Merge pull request #2 from dolthub/aaron/hardfork
Browse files Browse the repository at this point in the history
go.mod: Rename go module to github.com/dolthub/jsonpath.
  • Loading branch information
reltuk authored Apr 19, 2023
2 parents d49537a + 2191531 commit 83d7c0a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 oliver
Copyright (c) 2021, 2015; DoltHub Authors, oliver

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/oliveagle/jsonpath
module github.com/dolthub/jsonpath

go 1.15

Expand Down
6 changes: 6 additions & 0 deletions jsonpath.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// Copyright 2015, 2021; oliver, DoltHub Authors
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.

package jsonpath

import (
Expand Down
6 changes: 6 additions & 0 deletions jsonpath_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// Copyright 2015, 2021; oliver, DoltHub Authors
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.

package jsonpath

import (
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ but also with some minor differences.

this library is till bleeding edge, so use it at your own risk. :D

**Golang Version Required**: 1.5+
**Golang Version Required**: 1.15+

Get Started
------------
Expand Down Expand Up @@ -111,4 +111,4 @@ example json path syntax.
| $.store.book[:].price | [8.9.5, 12.99, 8.9.9, 22.99] |
| $.store.book[?(@.author =~ /(?i).*REES/)].author | "Nigel Rees" |

> Note: golang support regular expression flags in form of `(?imsU)pattern`
> Note: golang support regular expression flags in form of `(?imsU)pattern`

0 comments on commit 83d7c0a

Please sign in to comment.